updates
This commit is contained in:
parent
22be77e7e6
commit
064189d6ee
@ -17,6 +17,7 @@ require("null-ls").setup({
|
|||||||
null_ls.builtins.completion.luasnip,
|
null_ls.builtins.completion.luasnip,
|
||||||
-- null_ls.builtins.code_actions.gitsigns,
|
-- null_ls.builtins.code_actions.gitsigns,
|
||||||
null_ls.builtins.code_actions.shellcheck,
|
null_ls.builtins.code_actions.shellcheck,
|
||||||
|
null_ls.builtins.code_actions.eslint, null_ls.builtins.diagnostics.tsc,
|
||||||
null_ls.builtins.diagnostics.cppcheck,
|
null_ls.builtins.diagnostics.cppcheck,
|
||||||
null_ls.builtins.diagnostics.gitlint,
|
null_ls.builtins.diagnostics.gitlint,
|
||||||
null_ls.builtins.diagnostics.jsonlint,
|
null_ls.builtins.diagnostics.jsonlint,
|
||||||
@ -28,7 +29,8 @@ require("null-ls").setup({
|
|||||||
-- }
|
-- }
|
||||||
-- }),
|
-- }),
|
||||||
null_ls.builtins.formatting.sql_formatter,
|
null_ls.builtins.formatting.sql_formatter,
|
||||||
null_ls.builtins.diagnostics.pylint,
|
null_ls.builtins.diagnostics.pylint, null_ls.builtins.diagnostics.mypy,
|
||||||
|
null_ls.builtins.diagnostics.pycodestyle,
|
||||||
null_ls.builtins.diagnostics.pydocstyle.with({
|
null_ls.builtins.diagnostics.pydocstyle.with({
|
||||||
extra_args = { "--config=$ROOT/setup.cfg" }
|
extra_args = { "--config=$ROOT/setup.cfg" }
|
||||||
}), null_ls.builtins.diagnostics.vint,
|
}), null_ls.builtins.diagnostics.vint,
|
||||||
|
@ -14,13 +14,13 @@ local has_words_before = function()
|
|||||||
end
|
end
|
||||||
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
||||||
return col ~= 0 and
|
return col ~= 0 and
|
||||||
vim.api.nvim_buf_get_text(0, line - 1, 0, line - 1, col, {})[1]:match(
|
vim.api.nvim_buf_get_text(0, line - 1, 0, line - 1, col, {})[1]:match(
|
||||||
"^%s*$") == nil
|
"^%s*$") == nil
|
||||||
end
|
end
|
||||||
|
|
||||||
lspkind.init({symbol_map = {Copilot = ""}})
|
lspkind.init({ symbol_map = { Copilot = "" } })
|
||||||
|
|
||||||
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", {fg = "#6CC644"})
|
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", { fg = "#6CC644" })
|
||||||
|
|
||||||
cmp.setup({
|
cmp.setup({
|
||||||
snippet = {
|
snippet = {
|
||||||
@ -43,7 +43,7 @@ cmp.setup({
|
|||||||
else
|
else
|
||||||
fallback()
|
fallback()
|
||||||
end
|
end
|
||||||
end, {'i', 's'}),
|
end, { 'i', 's' }),
|
||||||
['<C-n>'] = cmp.mapping(function(fallback)
|
['<C-n>'] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_next_item()
|
cmp.select_next_item()
|
||||||
@ -54,7 +54,7 @@ cmp.setup({
|
|||||||
else
|
else
|
||||||
fallback()
|
fallback()
|
||||||
end
|
end
|
||||||
end, {'i', 's'}),
|
end, { 'i', 's' }),
|
||||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
@ -74,7 +74,7 @@ cmp.setup({
|
|||||||
-- end, { "i", "s" }),
|
-- end, { "i", "s" }),
|
||||||
["<Tab>"] = vim.schedule_wrap(function(fallback)
|
["<Tab>"] = vim.schedule_wrap(function(fallback)
|
||||||
if cmp.visible() and has_words_before() then
|
if cmp.visible() and has_words_before() then
|
||||||
cmp.select_next_item({behavior = cmp.SelectBehavior.Select})
|
cmp.select_next_item({ behavior = cmp.SelectBehavior.Select })
|
||||||
elseif luasnip.expand_or_jumpable() then
|
elseif luasnip.expand_or_jumpable() then
|
||||||
luasnip.expand_or_jump()
|
luasnip.expand_or_jump()
|
||||||
else
|
else
|
||||||
@ -83,7 +83,7 @@ cmp.setup({
|
|||||||
end),
|
end),
|
||||||
['<S-Tab>'] = cmp.mapping(function()
|
['<S-Tab>'] = cmp.mapping(function()
|
||||||
if cmp.visible() then cmp.select_prev_item() end
|
if cmp.visible() then cmp.select_prev_item() end
|
||||||
end, {"i", "s"})
|
end, { "i", "s" })
|
||||||
},
|
},
|
||||||
window = {
|
window = {
|
||||||
completion = {
|
completion = {
|
||||||
@ -106,7 +106,7 @@ cmp.setup({
|
|||||||
formatting = {
|
formatting = {
|
||||||
-- options: 'text', 'text_symbol', 'symbol_text', 'symbol'
|
-- options: 'text', 'text_symbol', 'symbol_text', 'symbol'
|
||||||
-- mode = 'symbol_text',
|
-- mode = 'symbol_text',
|
||||||
fields = {"kind", "abbr", "menu"},
|
fields = { "kind", "abbr", "menu" },
|
||||||
format = function(entry, vim_item)
|
format = function(entry, vim_item)
|
||||||
local kind = require("lspkind").cmp_format({
|
local kind = require("lspkind").cmp_format({
|
||||||
mode = "symbol_text",
|
mode = "symbol_text",
|
||||||
@ -139,7 +139,7 @@ cmp.setup({
|
|||||||
TypeParameter = ""
|
TypeParameter = ""
|
||||||
}
|
}
|
||||||
})(entry, vim_item)
|
})(entry, vim_item)
|
||||||
local strings = vim.split(kind.kind, "%s", {trimempty = true})
|
local strings = vim.split(kind.kind, "%s", { trimempty = true })
|
||||||
kind.kind = " " .. strings[1] .. " "
|
kind.kind = " " .. strings[1] .. " "
|
||||||
kind.menu = " (" .. strings[2] .. ")"
|
kind.menu = " (" .. strings[2] .. ")"
|
||||||
|
|
||||||
@ -157,13 +157,13 @@ cmp.setup({
|
|||||||
-- })
|
-- })
|
||||||
},
|
},
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{name = "copilot", group_index = 2}, {name = "path", group_index = 2},
|
{ name = "copilot", group_index = 2 }, { name = "path", group_index = 2 },
|
||||||
{name = 'nvim_lsp', group_index = 2},
|
{ name = 'nvim_lsp', group_index = 2 },
|
||||||
{name = 'nvim_lsp_signature_help', group_index = 2},
|
{ name = 'nvim_lsp_signature_help', group_index = 2 },
|
||||||
{name = 'nvim_lsp_document_symbol', group_index = 2},
|
{ name = 'nvim_lsp_document_symbol', group_index = 2 },
|
||||||
{name = 'vim-dadbod-completion', group_index = 2},
|
{ name = 'vim-dadbod-completion', group_index = 2 },
|
||||||
{name = 'neorg', group_index = 2}, -- For luasnip users.
|
{ name = 'neorg', group_index = 2 }, -- For luasnip users.
|
||||||
{name = 'luasnip', group_index = 2}, -- For luasnip users.
|
{ name = 'luasnip', group_index = 2 }, -- For luasnip users.
|
||||||
{
|
{
|
||||||
name = 'buffer',
|
name = 'buffer',
|
||||||
option = {
|
option = {
|
||||||
@ -178,7 +178,7 @@ cmp.setup({
|
|||||||
}
|
}
|
||||||
-- { name = 'ultisnips' }, -- For ultisnips users.
|
-- { name = 'ultisnips' }, -- For ultisnips users.
|
||||||
-- { name = 'snippy' }, -- For snippy users.
|
-- { name = 'snippy' }, -- For snippy users.
|
||||||
}, {{name = 'buffer'}}),
|
}, { { name = 'buffer' } }),
|
||||||
sorting = {
|
sorting = {
|
||||||
priority_weight = 2,
|
priority_weight = 2,
|
||||||
comparators = {
|
comparators = {
|
||||||
@ -203,19 +203,19 @@ cmp.setup({
|
|||||||
|
|
||||||
cmp.setup.cmdline('/', {
|
cmp.setup.cmdline('/', {
|
||||||
mapping = cmp.mapping.preset.cmdline(),
|
mapping = cmp.mapping.preset.cmdline(),
|
||||||
sources = {{name = 'buffer'}}
|
sources = { { name = 'buffer' } }
|
||||||
})
|
})
|
||||||
|
|
||||||
cmp.setup.cmdline(':', {
|
cmp.setup.cmdline(':', {
|
||||||
mapping = cmp.mapping.preset.cmdline(),
|
mapping = cmp.mapping.preset.cmdline(),
|
||||||
sources = cmp.config.sources({{name = 'path'}}, {
|
sources = cmp.config.sources({ { name = 'path' } }, {
|
||||||
{name = 'cmdline', option = {ignore_cmds = {'Man', '!'}}}
|
{ name = 'cmdline', option = { ignore_cmds = { 'Man', '!' } } }
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
local servers = {
|
local servers = {
|
||||||
'bashls', 'jedi_language_server', 'jsonls', 'yamlls', 'vimls', 'dotls',
|
'bashls', 'pyright', 'jsonls', 'yamlls', 'vimls', 'dotls', 'dockerls',
|
||||||
'dockerls', 'html', 'cssls', 'lua_ls'
|
'html', 'cssls', 'lua_ls', 'eslint', 'tsserver', 'angularls', 'ansiblels'
|
||||||
}
|
}
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
if lsp == 'lua_ls' then
|
if lsp == 'lua_ls' then
|
||||||
@ -223,14 +223,37 @@ for _, lsp in ipairs(servers) do
|
|||||||
-- on_attach = my_custom_on_attach,
|
-- on_attach = my_custom_on_attach,
|
||||||
-- on_attach = highlight_symbol_under_cursor(),
|
-- on_attach = highlight_symbol_under_cursor(),
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
callSnippet = "Replace"
|
callSnippet = "Replace",
|
||||||
|
settings = {
|
||||||
|
Lua = {
|
||||||
|
runtime = {
|
||||||
|
version = 'Lua 5.4',
|
||||||
|
path = {
|
||||||
|
'?.lua', '?/init.lua',
|
||||||
|
-- vim.fn.expand '~/.luarocks/share/lua/5.4/?.lua',
|
||||||
|
-- vim.fn.expand '~/.luarocks/share/lua/5.4/?/init.lua',
|
||||||
|
'/usr/share/5.3/?.lua',
|
||||||
|
'/usr/share/lua/5.3/?/init.lua',
|
||||||
|
'/usr/share/5.4/?.lua',
|
||||||
|
'/usr/share/lua/5.4/?/init.lua'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
workspace = {
|
||||||
|
library = {
|
||||||
|
-- vim.fn.expand '~/.luarocks/share/lua/5.3',
|
||||||
|
'/usr/share/lua/5.1', '/usr/share/lua/5.3',
|
||||||
|
'/usr/share/lua/5.4'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
lspconfig[lsp].setup {capabilities = capabilities}
|
lspconfig[lsp].setup { capabilities = capabilities }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
cmp.event:on("menu_opened",
|
cmp.event:on("menu_opened",
|
||||||
function() vim.b.copilot_suggestion_hidden = true end)
|
function() vim.b.copilot_suggestion_hidden = true end)
|
||||||
cmp.event:on("menu_closed",
|
cmp.event:on("menu_closed",
|
||||||
function() vim.b.copilot_suggestion_hidden = false end)
|
function() vim.b.copilot_suggestion_hidden = false end)
|
||||||
|
Loading…
Reference in New Issue
Block a user