diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-07 18:06:20 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-07 18:06:20 +0100 |
commit | 6ad9ebb4d05d0f5de73a76b81464db2b673251d0 (patch) | |
tree | 382c545829302449478f0a31c1b2c815c5b446af /nvim/after/plugin/lsp.lua | |
parent | 8074753daaad059e407dbb0dae05206ef5f510a3 (diff) |
Adds first neovim config for several years
I copied ThePrimeagen setting up neovim based on his repository at
https://github.com/ThePrimeagen/init.lua. The video itself is at
https://www.youtube.com/watch?v=w7i4amO_zaE.
I tried following each step based on the video, but I for some reason
autocomplete did not work properly after a while. So I cloned his repo
and adapted it to some extent to make it more in line with what I need.
This is an early state, but autocomplete works. There is much to do to
mirror my vimrc, if I am going to go down that route.
Diffstat (limited to 'nvim/after/plugin/lsp.lua')
-rw-r--r-- | nvim/after/plugin/lsp.lua | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/nvim/after/plugin/lsp.lua b/nvim/after/plugin/lsp.lua new file mode 100644 index 0000000..e644f74 --- /dev/null +++ b/nvim/after/plugin/lsp.lua @@ -0,0 +1,67 @@ +local lsp = require("lsp-zero") + +lsp.preset("recommended") + +lsp.ensure_installed({ + 'pyright', 'lua_ls' +}) + +-- Fix Undefined global 'vim' +lsp.configure('lua_ls', { + settings = { + Lua = { + diagnostics = { + globals = { 'vim' } + } + } + } +}) + + +local cmp = require('cmp') +local cmp_select = {behavior = cmp.SelectBehavior.Select} +local cmp_mappings = lsp.defaults.cmp_mappings({ + ['<C-p>'] = cmp.mapping.select_prev_item(cmp_select), + ['<C-n>'] = cmp.mapping.select_next_item(cmp_select), + ['<C-y>'] = cmp.mapping.confirm({ select = true }), + ["<C-Space>"] = cmp.mapping.complete(), +}) + +cmp_mappings['<Tab>'] = nil +cmp_mappings['<S-Tab>'] = nil + +lsp.setup_nvim_cmp({ + mapping = cmp_mappings +}) + +lsp.set_preferences({ + suggest_lsp_servers = false, + sign_icons = { + error = 'E', + warn = 'W', + hint = 'H', + info = 'I' + } +}) + +lsp.on_attach(function(client, bufnr) + local opts = {buffer = bufnr, remap = false} + + vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts) + vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts) + vim.keymap.set("n", "<leader>vws", function() vim.lsp.buf.workspace_symbol() end, opts) + vim.keymap.set("n", "<leader>vd", function() vim.diagnostic.open_float() end, opts) + vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts) + vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts) + vim.keymap.set("n", "<leader>vca", function() vim.lsp.buf.code_action() end, opts) + vim.keymap.set("n", "<leader>vrr", function() vim.lsp.buf.references() end, opts) + vim.keymap.set("n", "<leader>vrn", function() vim.lsp.buf.rename() end, opts) + vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts) +end) + +lsp.setup() + +vim.diagnostic.config({ + virtual_text = true +}) + |