53 lines
978 B
Lua
53 lines
978 B
Lua
-- Stuff that makes Neovim look nicer
|
|
|
|
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
priority = 1000,
|
|
lazy = false,
|
|
config = function()
|
|
vim.cmd([[colorscheme catppuccin-mocha]])
|
|
end,
|
|
},
|
|
{
|
|
"sschleemilch/slimline.nvim",
|
|
opts = {
|
|
style = "fg",
|
|
bold = true,
|
|
hl = {
|
|
secondary = "Comment",
|
|
},
|
|
configs = {
|
|
mode = {
|
|
hl = {
|
|
normal = "Comment",
|
|
insert = "Normal",
|
|
pending = "Normal",
|
|
visual = "Normal",
|
|
command = "Normal",
|
|
},
|
|
},
|
|
path = {
|
|
hl = {
|
|
primary = "Label",
|
|
},
|
|
},
|
|
git = {
|
|
hl = {
|
|
primary = "Function",
|
|
},
|
|
},
|
|
diagnostics = {
|
|
hl = {
|
|
primary = "Statement",
|
|
},
|
|
},
|
|
filetype_lsp = {
|
|
hl = {
|
|
primary = "String",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|