feat(nvim): fix invalid icons

This commit is contained in:
oddlama 2023-10-23 00:56:19 +02:00
parent 3e6bb8da31
commit 141781e2eb
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 52 additions and 45 deletions

View file

@ -54,9 +54,10 @@ opt.shiftwidth = 4
opt.softtabstop = 4
opt.shiftround = true -- Round indentation commands to next multiple of shiftwidth
opt.formatoptions = "rqj" -- r = insert comment leader when hitting <Enter> in insert mode
-- r = insert comment leader when hitting <Enter> in insert mode
-- q = allow explicit formatting with gq
-- j = remove comment leaders when joining lines if it makes sense
opt.formatoptions = "rqj"
opt.virtualedit = "all" -- Allow the curser to be positioned on cells that have no actual character;
-- Like moving beyond EOL or on any visual 'space' of a tab character

View file

@ -1,44 +1,46 @@
local M = {}
M.lspkind = {
Namespace = "",
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 = "",
Namespace = "󰌗",
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 = "󰊄",
Table = "",
Object = "",
Object = "󰅩",
Tag = "",
Array = "[]",
Boolean = " ",
Number = " ",
Null = "",
String = "",
Boolean = "",
Number = "",
Null = "󰟢",
String = "󰉿",
Calendar = "",
Watch = "",
Watch = "󰥔",
Package = "",
Copilot = "",
Copilot = "",
Codeium = "",
TabNine = "",
}
M.statusline_separators = {
@ -65,7 +67,7 @@ M.statusline_separators = {
M.devicons = {
default_icon = {
icon = "",
icon = "󰈚",
name = "Default",
},
@ -79,6 +81,11 @@ M.devicons = {
name = "css",
},
dart = {
icon = "",
name = "dart",
},
deb = {
icon = "",
name = "deb",
@ -95,17 +102,17 @@ M.devicons = {
},
jpeg = {
icon = "",
icon = "󰉏",
name = "jpeg",
},
jpg = {
icon = "",
icon = "󰉏",
name = "jpg",
},
js = {
icon = "",
icon = "󰌞",
name = "js",
},
@ -115,7 +122,7 @@ M.devicons = {
},
lock = {
icon = "",
icon = "󰌾",
name = "lock",
},
@ -125,7 +132,7 @@ M.devicons = {
},
mp3 = {
icon = "",
icon = "󰎆",
name = "mp3",
},
@ -140,7 +147,7 @@ M.devicons = {
},
png = {
icon = "",
icon = "󰉏",
name = "png",
},
@ -150,7 +157,7 @@ M.devicons = {
},
["robots.txt"] = {
icon = "",
icon = "󰚩",
name = "robots",
},
@ -160,7 +167,7 @@ M.devicons = {
},
ts = {
icon = "",
icon = "󰛦",
name = "ts",
},
@ -180,7 +187,7 @@ M.devicons = {
},
vue = {
icon = "",
icon = "󰡄",
name = "vue",
},