Add new neovim config (last time, i promise)

This commit is contained in:
2021-11-25 14:05:05 +03:00
parent eb0d465e3c
commit c64e9b1e53
3 changed files with 343 additions and 0 deletions

150
config/nvim/lua/lsp.lua Normal file
View File

@@ -0,0 +1,150 @@
local nvim_lsp = require("lspconfig")
local cmp = require("cmp")
local kind_icons = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "", Interface = "",
Module = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = ""
}
cmp.setup({
snippet = {
expand = function(args)
require("luasnip").lsp_expand(args.body)
end
},
mapping = {
["<C-j>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Select }),
["<C-k>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Select }),
["<C-space>"] = cmp.mapping.complete(),
["<CR>"] = cmp.mapping.confirm({ select = true, behavior = cmp.SelectBehavior.Insert }),
["<TAB>"] = cmp.mapping.confirm({ select = true, behavior = cmp.SelectBehavior.Insert })
},
sources = cmp.config.sources({
{ name = "nvim_lsp" },
{ name = "luasnip" },
{ name = "nvim_lua" }
}, {
{ name = "path" },
{ name = "buffer" }
}),
completion = {
completeopt = "menu,menuone,noselect,noinsert"
},
experimental = {
ghost_text = true
},
sorting = {
comparators = {
cmp.config.compare.exact,
cmp.config.compare.score,
cmp.config.compare.recently_used,
cmp.config.compare.kind,
cmp.config.compare.offset
}
},
documentation = {
border = { "", "", "", "", "", "", "", "" },
zindex = 999
},
formatting = {
format = function(entry, vim_item)
vim_item.kind = string.format('%s %s', kind_icons[vim_item.kind], vim_item.kind)
vim_item.menu = ({ buffer = "[Buffer]", nvim_lsp = "[LSP]", luasnip = "[Snippet]", nvim_lua = "[Lua]", path = "[File]" })[entry.source.name]
return vim_item
end
}
})
cmp.setup.cmdline("/", {
sources = {
{ name = "buffer" }
}
})
cmp.setup.cmdline(":", {
sources = {
{ name = "path" },
{ name = "cmdline" }
}
})
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
local on_attach = function(_, bufnr)
require("lsp_signature").on_attach({}, bufnr)
end
local servers = { "tsserver", "pyright" }
for _, server in ipairs(servers) do
nvim_lsp[server].setup({
capabilities = capabilities,
on_attach = on_attach,
flags = {
debounce_text_changes = 150
}
})
end
nvim_lsp.gopls.setup({
capabilities = capabilities,
on_attach = on_attach,
settings = {
gopls = {
}
}
})
local runtime_path = vim.split(package.path, ';')
table.insert(runtime_path, "lua/?.lua")
table.insert(runtime_path, "lua/?/init.lua")
nvim_lsp.sumneko_lua.setup({
capabilities = capabilities,
on_attach = on_attach,
cmd = { "/sbin/lua-language-server", "-E", "/usr/lib/lua-language-server/main.lua" },
settings = {
Lua = {
runtime = {
version = "LuaJIT",
path = runtime_path
},
diagnostics = {
globals = { "vim" }
},
workspace = {
library = vim.api.nvim_get_runtime_file("", true)
},
telemetry = {
enable = false
}
}
}
})
require("luasnip/loaders/from_vscode").lazy_load()
-- Auto formatting
vim.cmd([[autocmd BufWritePre * lua vim.lsp.buf.formatting_sync(nil, 1000)]])
vim.cmd([[autocmd BufWritePre *.ts,*.js,*.jsx,*.tsx,*.py ALEFix]])

View File

@@ -0,0 +1,68 @@
local function map(mode, shortcut, command)
vim.api.nvim_set_keymap(mode, shortcut, command, { noremap = true, silent = true })
end
local function nmap(shortcut, command)
map("n", shortcut, command)
end
local function vmap(shortcut, command)
map("v", shortcut, command)
end
-- Quickly save/quit vim
nmap("<leader>w", ":w<CR>")
nmap("<leader>q", ":q<CR>")
-- Move line under the cursor up and down
nmap("<A-k>", ":m .-2<CR>==")
nmap("<A-j>", ":m .+1<CR>==")
vmap("K", ":m '<-2<CR>gv=gv")
vmap("J", ":m '>+1<CR>gv=gv")
-- Remove search highlighting
nmap("<leader>nh", ":nohl<CR>")
-- Escape from terminal
map("t", "<ESC>", "<C-\\><C-n>")
-- Open splits
nmap("<leader>sv", ":vs<CR>")
nmap("<leader>sh", ":sp<CR>")
-- Move focus between splits
nmap("<leader>h", "<C-w>h")
nmap("<leader>j", "<C-w>j")
nmap("<leader>k", "<C-w>k")
nmap("<leader>l", "<C-w>l")
-- Resize splits
nmap("<C-j>", ":resize -2<CR>")
nmap("<C-k>", ":resize +2<CR>")
nmap("<C-h>", ":vert resize -10<CR>")
nmap("<C-l>", ":vert resize +10<CR>")
-- File Tree
nmap("<leader>b", ":NvimTreeToggle<CR>")
-- Telescope
nmap("<leader>p", ":Telescope<CR>")
nmap("<leader>f", ":Telescope find_files<CR>")
-- LSP
nmap("K", ":lua vim.lsp.buf.hover()<CR>")
nmap("gd", ":lua vim.lsp.buf.definition()<CR>")
nmap("gr", ":lua vim.lsp.buf.references()<CR>")
nmap("<leader>.", ":lua vim.lsp.buf.code_action()<CR>")
-- Tabs
nmap("<leader>1", ":BufferGoto 1<CR>")
nmap("<leader>2", ":BufferGoto 2<CR>")
nmap("<leader>3", ":BufferGoto 3<CR>")
nmap("<leader>4", ":BufferGoto 4<CR>")
nmap("<leader>5", ":BufferGoto 5<CR>")
nmap("<leader>6", ":BufferGoto 6<CR>")
nmap("<leader>7", ":BufferGoto 7<CR>")
nmap("<leader>8", ":BufferGoto 8<CR>")
nmap("<leader>9", ":BufferGoto 9<CR>")
nmap("<leader>e", ":BufferClose<CR>")