1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: plugins and dependencies restructured

This commit is contained in:
2023-08-08 06:10:22 +02:00
parent e2f0d00ee3
commit 222b98d70b
2 changed files with 219 additions and 273 deletions

View File

@@ -8,6 +8,47 @@ Todo_sign = " "
Perfect_sign = ""
Test_sign = ""
Menu_signs = {
nvim_lsp = "",
path = "",
buffer = "",
luasnip = "",
}
Symbol_map = {
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 = ""
}
Install_icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
vim.fn.sign_define(
"DiagnosticSignError",
{ texthl = "DiagnosticSignError", text = Error_sign, numhl = "DiagnosticSignError" }