58 lines
1.1 KiB
Lua
58 lines
1.1 KiB
Lua
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = ","
|
|
|
|
local kind_icons = {
|
|
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 = "",
|
|
}
|
|
|
|
local colors = {
|
|
blue = "#80a0ff",
|
|
cyan = "#79dac8",
|
|
black = "#080808",
|
|
white = "#c6c6c6",
|
|
red = "#ff5189",
|
|
violet = "#d183e8",
|
|
grey = "#303030",
|
|
}
|
|
|
|
local bubbles_theme = {
|
|
normal = {
|
|
a = { fg = colors.black, bg = colors.violet },
|
|
b = { fg = colors.white, bg = colors.grey },
|
|
c = { fg = colors.white },
|
|
},
|
|
|
|
insert = { a = { fg = colors.black, bg = colors.blue } },
|
|
visual = { a = { fg = colors.black, bg = colors.cyan } },
|
|
replace = { a = { fg = colors.black, bg = colors.red } },
|
|
|
|
inactive = {
|
|
a = { fg = colors.white, bg = colors.black },
|
|
b = { fg = colors.white, bg = colors.black },
|
|
c = { fg = colors.white },
|
|
},
|
|
}
|