Skip to content

Commit ef18889

Browse files
some refactoring
1 parent 1108d3d commit ef18889

File tree

4 files changed

+172
-0
lines changed

4 files changed

+172
-0
lines changed

lua/setups/lsp/cmp.lua

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
local lspkind = require'lspkind'
2+
local source_mapping = {
3+
buffer = "[Buffer]",
4+
nvim_lsp = "[LSP]",
5+
nvim_lua = "[Lua]",
6+
cmp_tabnine = "[TN]",
7+
path = "[Path]",
8+
vsnip = "[vsnip]",
9+
cmdline = "[cmdline]"
10+
}
11+
local cmp = require'cmp'
12+
cmp.setup({
13+
formatting = {
14+
format = lspkind.cmp_format({
15+
maxwidth = 50,
16+
before = function (entry, vim_item)
17+
vim_item.menu = source_mapping[entry.source.name]
18+
return vim_item
19+
end
20+
}),
21+
},
22+
snippet = {
23+
expand = function(args)
24+
vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
25+
end,
26+
},
27+
mapping = cmp.mapping.preset.insert({
28+
['<C-j>'] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Select }),
29+
['<C-k>'] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Select }),
30+
['<C-e>'] = cmp.mapping.close(),
31+
['<CR>'] = cmp.mapping.confirm({ select = true }),
32+
}),
33+
sources = cmp.config.sources({
34+
{ name = 'nvim_lsp' },
35+
{ name = 'vsnip' },
36+
{ name = 'path' },
37+
{ name = 'buffer' }
38+
})
39+
})
40+
41+
-- Set configuration for specific filetype.
42+
cmp.setup.filetype('gitcommit', {
43+
sources = cmp.config.sources({
44+
{ name = 'cmp_git' }, -- You can specify the `cmp_git` source if you were installed it.
45+
}, {
46+
{ name = 'buffer' },
47+
})
48+
})
49+
50+
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
51+
cmp.setup.cmdline('/', {
52+
mapping = cmp.mapping.preset.cmdline(),
53+
sources = {
54+
{ name = 'buffer' }
55+
}
56+
})
57+
58+
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
59+
cmp.setup.cmdline(':', {
60+
mapping = cmp.mapping.preset.cmdline(),
61+
sources = cmp.config.sources({
62+
{ name = 'path' }
63+
}, {
64+
{ name = 'cmdline' }
65+
})
66+
})

lua/setups/lsp/lspkind.lua

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
require('lspkind').init({
2+
-- DEPRECATED (use mode instead): enables text annotations
3+
--
4+
-- default: true
5+
-- with_text = true,
6+
7+
-- defines how annotations are shown
8+
-- default: symbol
9+
-- options: 'text', 'text_symbol', 'symbol_text', 'symbol'
10+
mode = 'text',
11+
12+
-- default symbol map
13+
-- can be either 'default' (requires nerd-fonts font) or
14+
-- 'codicons' for codicon preset (requires vscode-codicons font)
15+
--
16+
-- default: 'default'
17+
preset = 'default',
18+
symbol_map = {
19+
Text = "",
20+
Method = "",
21+
Function = "",
22+
Constructor = "",
23+
Field = "",
24+
Variable = "",
25+
Class = "",
26+
Interface = "",
27+
Module = "",
28+
Property = "",
29+
Unit = "",
30+
Value = "",
31+
Enum = "",
32+
Keyword = "",
33+
Snippet = "",
34+
Color = "",
35+
File = "",
36+
Reference = "",
37+
Folder = "",
38+
EnumMember = "",
39+
Constant = "",
40+
Struct = "",
41+
Event = "",
42+
Operator = "",
43+
TypeParameter = ""
44+
}
45+
})

lua/setups/lsp/lspsaga.lua

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
--require('lspsaga').setup {
2+
--debug = false,
3+
--use_saga_diagnostic_sign = true,
4+
--error_sign = "",
5+
--warn_sign = "",
6+
--hint_sign = "",
7+
--infor_sign = "",
8+
--diagnostic_header_icon = "  ",
9+
--code_action_icon = " ",
10+
--code_action_prompt = {
11+
--enable = true,
12+
--sign = true,
13+
--sign_priority = 40,
14+
--virtual_text = true,
15+
--},
16+
--finder_definition_icon = " ",
17+
--finder_reference_icon = " ",
18+
--max_preview_lines = 10,
19+
--finder_action_keys = {
20+
--open = "o",
21+
--vsplit = "s",
22+
--split = "i",
23+
--quit = "q",
24+
--scroll_down = "<C-f>",
25+
--scroll_up = "<C-b>",
26+
--},
27+
--code_action_keys = {
28+
--quit = "q",
29+
--exec = "<CR>",
30+
--},
31+
--rename_action_keys = {
32+
--quit = "<C-c>",
33+
--exec = "<CR>",
34+
--},
35+
--definition_preview_icon = " ",
36+
--border_style = "single",
37+
--rename_prompt_prefix = "➤",
38+
--server_filetype_map = {},
39+
--}
40+
local saga = require('lspsaga')
41+
42+
saga.init_lsp_saga()

lua/setups/lsp/servers.lua

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
local capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities())
2+
local function on_attach(client, bufnr)
3+
require("lsp-inlayhints").on_attach(client, bufnr)
4+
end
5+
6+
require("nvim-lsp-installer").setup {}
7+
local lspconfig = require("lspconfig")
8+
lspconfig.sumneko_lua.setup { on_attach = on_attach, capabilites = capabilities }
9+
lspconfig.tsserver.setup { on_attach = on_attach, capabilities = capabilities }
10+
11+
local rt = require("rust-tools")
12+
13+
rt.setup({
14+
server = {
15+
on_attach = function(_, bufnr)
16+
end,
17+
},
18+
})
19+

0 commit comments

Comments
 (0)