This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/lsp/init.lua

37 lines
858 B
Lua
Raw Normal View History

-- Author : swytch
-- Created : Tuesday May 18, 2021 12:08:51 CET
-- License : GPLv3
-- Description : neovim lsp config file
vim.fn.sign_define(
"LspDiagnosticsSignError",
{
texthl = "LspDiagnosticsSignError",
text = globals.sign_error,
numhl = "LspDiagnosticsSignError"
}
)
vim.fn.sign_define(
"LspDiagnosticsSignWarning",
{
texthl = "LspDiagnosticsSignWarning",
text = globals.sign_warning,
numhl = "LspDiagnosticsSignWarning"}
)
vim.fn.sign_define(
"LspDiagnosticsSignHint",
{
texthl = "LspDiagnosticsSignHint",
text = globals.sign_hint,
numhl = "LspDiagnosticsSignHint"
}
)
vim.fn.sign_define(
"LspDiagnosticsSignInformation",
{
texthl = "LspDiagnosticsSignInformation",
text = globals.sign_info,
numhl = "LspDiagnosticsSignInformation"
}
)