Improve neovim setup
This commit is contained in:
parent
13d8a1b162
commit
fc677c6270
@ -14,8 +14,14 @@
|
|||||||
lsp-zero-nvim
|
lsp-zero-nvim
|
||||||
vim-floaterm
|
vim-floaterm
|
||||||
luasnip
|
luasnip
|
||||||
|
cmp_luasnip
|
||||||
lualine-nvim
|
lualine-nvim
|
||||||
vim-sleuth
|
vim-sleuth
|
||||||
|
copilot-lua
|
||||||
|
copilot-cmp
|
||||||
|
cmp-cmdline
|
||||||
|
cmp-buffer
|
||||||
|
catppuccin-nvim
|
||||||
(nvim-treesitter.withPlugins (p: [
|
(nvim-treesitter.withPlugins (p: [
|
||||||
p.tree-sitter-yaml
|
p.tree-sitter-yaml
|
||||||
p.tree-sitter-nix
|
p.tree-sitter-nix
|
||||||
|
@ -19,24 +19,6 @@ require('lspconfig').gopls.setup({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Cmp
|
|
||||||
local cmp = require('cmp')
|
|
||||||
local cmp_action = lsp_zero.cmp_action()
|
|
||||||
|
|
||||||
cmp.setup({
|
|
||||||
mapping = cmp.mapping.preset.insert({
|
|
||||||
-- Enter to confirm completion
|
|
||||||
['<CR>'] = cmp.mapping.confirm({select = false}),
|
|
||||||
-- Ctrl+Space to open completion menu
|
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
|
||||||
-- Move between snippet placeholders
|
|
||||||
['<C-f>'] = cmp_action.luasnip_jump_forward(),
|
|
||||||
['<C-b>'] = cmp_action.luasnip_jump_backward(),
|
|
||||||
-- Scroll in completion docs
|
|
||||||
['<C-k>'] = cmp.mapping.scroll_docs(-4),
|
|
||||||
['<C-j>'] = cmp.mapping.scroll_docs(4),
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Telescope
|
-- Telescope
|
||||||
require('telescope').setup({
|
require('telescope').setup({
|
||||||
@ -115,3 +97,46 @@ require('lualine').setup({
|
|||||||
lualine_z = { 'location' }
|
lualine_z = { 'location' }
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Copilot
|
||||||
|
require('copilot').setup({
|
||||||
|
suggestions = { enabled = false },
|
||||||
|
panel = { enabled = false},
|
||||||
|
})
|
||||||
|
require('copilot_cmp').setup()
|
||||||
|
|
||||||
|
-- Cmp
|
||||||
|
local cmp = require('cmp')
|
||||||
|
local cmp_action = lsp_zero.cmp_action()
|
||||||
|
|
||||||
|
cmp.setup({
|
||||||
|
snippet = {
|
||||||
|
expand = function(args)
|
||||||
|
require('luasnip').lsp_expand(args.body)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
mapping = cmp.mapping.preset.insert({
|
||||||
|
-- Enter to confirm completion
|
||||||
|
['<CR>'] = cmp.mapping.confirm({select = false}),
|
||||||
|
-- Ctrl+Space to open completion menu
|
||||||
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
|
-- Move between snippet placeholders
|
||||||
|
['<C-f>'] = cmp_action.luasnip_jump_forward(),
|
||||||
|
['<C-b>'] = cmp_action.luasnip_jump_backward(),
|
||||||
|
-- Scroll in completion docs
|
||||||
|
['<C-k>'] = cmp.mapping.scroll_docs(-4),
|
||||||
|
['<C-j>'] = cmp.mapping.scroll_docs(4),
|
||||||
|
}),
|
||||||
|
sources = cmp.config.sources({
|
||||||
|
}, {
|
||||||
|
{ name = "copilot", group_index = 2 },
|
||||||
|
{ name = "luasnip" },
|
||||||
|
{ name = "buffer" },
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
-- Colorscheme
|
||||||
|
require('catppuccin').setup({
|
||||||
|
})
|
||||||
|
vim.cmd.colorscheme "catppuccin"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# Generic tools
|
# Generic tools
|
||||||
age
|
age
|
||||||
alacritty
|
alacritty
|
||||||
btop
|
unstable.btop
|
||||||
bzip2
|
bzip2
|
||||||
croc
|
croc
|
||||||
easyeffects
|
easyeffects
|
||||||
@ -49,6 +49,11 @@
|
|||||||
delve
|
delve
|
||||||
gopls
|
gopls
|
||||||
|
|
||||||
|
# js/ts
|
||||||
|
nodejs
|
||||||
|
nodePackages.pnpm
|
||||||
|
typescript
|
||||||
|
|
||||||
# Py stuff
|
# Py stuff
|
||||||
python3
|
python3
|
||||||
poetry
|
poetry
|
||||||
|
Loading…
Reference in New Issue
Block a user