mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 20:35:40 +00:00
Update theme, remove unused plugins
This commit is contained in:
parent
c08658eccc
commit
d5b28f9bea
@ -6,7 +6,7 @@ O = {
|
|||||||
clipboard = unnamedplus,
|
clipboard = unnamedplus,
|
||||||
incsearch = true,
|
incsearch = true,
|
||||||
termguicolors = true,
|
termguicolors = true,
|
||||||
colorscheme = 'nord',
|
colorscheme = 'gruvbox-baby',
|
||||||
hidden_files = true,
|
hidden_files = true,
|
||||||
wrap_lines = false,
|
wrap_lines = false,
|
||||||
number = true,
|
number = true,
|
||||||
|
@ -118,7 +118,7 @@ capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities)
|
|||||||
|
|
||||||
|
|
||||||
lspconfig['elixirls'].setup{
|
lspconfig['elixirls'].setup{
|
||||||
cmd = { "/Users/fbecker18/opt/elixir-ls/language_server.sh"},
|
cmd = { "/home/halfdan/opt/elixir-ls/rel/language_server.sh"},
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
}
|
}
|
||||||
|
@ -123,12 +123,10 @@ return require("packer").startup(
|
|||||||
use {'kdheepak/JuliaFormatter.vim'}
|
use {'kdheepak/JuliaFormatter.vim'}
|
||||||
|
|
||||||
-- themes & colorschemes
|
-- themes & colorschemes
|
||||||
use {'dracula/vim', as='dracula' }
|
|
||||||
use { "briones-gabriel/darcula-solid.nvim", requires = "rktjmp/lush.nvim" }
|
|
||||||
use {'shaunsingh/moonlight.nvim', as='moonlight'}
|
|
||||||
use {'arcticicestudio/nord-vim'}
|
use {'arcticicestudio/nord-vim'}
|
||||||
use {'joshdick/onedark.vim'}
|
use {'joshdick/onedark.vim'}
|
||||||
use {'sainnhe/everforest'}
|
use {'gruvbox-community/gruvbox'}
|
||||||
|
use {'luisiacc/gruvbox-baby'}
|
||||||
|
|
||||||
require_plugin('julia-vim')
|
require_plugin('julia-vim')
|
||||||
end
|
end
|
||||||
|
@ -33,3 +33,8 @@ vim.wo.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shif
|
|||||||
vim.o.updatetime = 300 -- Faster completion
|
vim.o.updatetime = 300 -- Faster completion
|
||||||
vim.o.timeoutlen = O.timeoutlen -- By default timeoutlen is 1000 ms
|
vim.o.timeoutlen = O.timeoutlen -- By default timeoutlen is 1000 ms
|
||||||
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
|
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
|
||||||
|
|
||||||
|
|
||||||
|
-- Enable telescope theme
|
||||||
|
vim.g.gruvbox_baby_telescope_theme = 1
|
||||||
|
vim.g.gruvbox_baby_background_color = "dark"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user