cleanup: rename module local name
lsp -> M
This commit is contained in:
parent
83cb6c2000
commit
c2e341f23e
@ -3,7 +3,7 @@
|
|||||||
-- License : GPLv3
|
-- License : GPLv3
|
||||||
-- Description : neovim lsp config file
|
-- Description : neovim lsp config file
|
||||||
|
|
||||||
local lsp = {}
|
local M = {}
|
||||||
|
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define(
|
||||||
"DiagnosticSignError",
|
"DiagnosticSignError",
|
||||||
@ -38,39 +38,43 @@ vim.fn.sign_define(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
-- symbols for autocomplete
|
M.icons = {
|
||||||
vim.lsp.protocol.CompletionItemKind = {
|
Class = " ",
|
||||||
" ", -- Text
|
Color = " ",
|
||||||
" ", -- Method
|
Constant = " µ ",
|
||||||
" ", -- Function
|
Constructor = " ",
|
||||||
" ", -- Constructor
|
Enum = " ",
|
||||||
" ﴲ ", -- Field
|
EnumMember = " ",
|
||||||
" ", -- Variable
|
Event = " ",
|
||||||
" ", -- Class
|
Field = " ",
|
||||||
" ﰮ ", -- Interface
|
File = " ",
|
||||||
" ", -- Module
|
Folder = " ",
|
||||||
" 襁 ", -- Property
|
Function = " ",
|
||||||
" ", -- Unit
|
Keyword = " ",
|
||||||
" ", -- Value
|
Interface = " ",
|
||||||
" 練 ", -- Enum
|
Method = " ",
|
||||||
" ", -- Keyword
|
Module = " ",
|
||||||
" ", -- Snippet
|
Operator = " ",
|
||||||
" ", -- Color
|
Property = " ",
|
||||||
" ", -- File
|
Reference = " ",
|
||||||
" ", -- Reference
|
Snippet = " ",
|
||||||
" ", -- Folder
|
Struct = " ",
|
||||||
" ", -- EnumMember
|
Text = " ",
|
||||||
" ﲀ ", -- Constant
|
TypeParameter = " ",
|
||||||
" ﳤ ", -- Struct
|
Unit = " ",
|
||||||
" ", -- Event
|
Value = " ",
|
||||||
" ", -- Operator
|
Variable = " ",
|
||||||
" ", -- TypeParameter
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function lsp.setup()
|
function M.setup()
|
||||||
|
local kinds = vim.lsp.protocol.CompletionItemKind
|
||||||
|
for i, kind in ipairs(kinds) do
|
||||||
|
kinds[i] = M.icons[kind] or kind
|
||||||
|
end
|
||||||
|
|
||||||
local ft = vim.bo.filetype
|
local ft = vim.bo.filetype
|
||||||
if ft == "cpp" then ft = "c" end
|
if ft == "cpp" then ft = "c" end
|
||||||
require("lsp." .. ft) -- ./<ft>.lua
|
require("lsp." .. ft) -- ./<ft>.lua
|
||||||
end
|
end
|
||||||
|
|
||||||
return lsp
|
return M
|
||||||
|
Reference in New Issue
Block a user