nvim: split ui-related plugins into separate file
This commit is contained in:
parent
5678612f32
commit
8b8d17a64c
2 changed files with 53 additions and 8 deletions
|
@ -1,14 +1,6 @@
|
||||||
-- Base plugins and libraries
|
-- Base plugins and libraries
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
priority = 1000,
|
|
||||||
lazy = false,
|
|
||||||
config = function()
|
|
||||||
vim.cmd([[colorscheme catppuccin-mocha]])
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
{
|
{
|
||||||
"folke/snacks.nvim",
|
"folke/snacks.nvim",
|
||||||
|
|
53
dot_config/nvim/lua/plugins/ui.lua
Normal file
53
dot_config/nvim/lua/plugins/ui.lua
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
-- 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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue