test
This commit is contained in:
parent
4a43cfe49a
commit
8ac67ffef2
1 changed files with 19 additions and 10 deletions
|
@ -12,7 +12,6 @@
|
|||
shiftwidth = 2;
|
||||
};
|
||||
plugins = {
|
||||
telescope.enable = true;
|
||||
treesitter.enable = true;
|
||||
lualine.enable = true;
|
||||
luasnip.enable = true;
|
||||
|
@ -25,6 +24,15 @@
|
|||
gitsigns.enable = true;
|
||||
toggleterm.enable = true;
|
||||
rainbow-delimiters.enable = true;
|
||||
startup.enable = true;
|
||||
|
||||
telescope = {
|
||||
enable = true;
|
||||
estensions = {
|
||||
ui-select.enable = true;
|
||||
frecency.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
lsp = {
|
||||
enable = true;
|
||||
|
@ -52,21 +60,22 @@
|
|||
};
|
||||
};
|
||||
|
||||
# TODO: Add this to stylix configs
|
||||
colorscheme = lib.mkForce "everforest";
|
||||
|
||||
colorschemes = {
|
||||
tokyonight.enable = false;
|
||||
gruvbox.enable = false;
|
||||
oxocarbon.enable = false;
|
||||
nord.enable = false;
|
||||
catppuccin.enable = false;
|
||||
base16.enable = false;
|
||||
kanagawa.enable = false;
|
||||
dracula.enable = false;
|
||||
tokyonight.enable = true;
|
||||
gruvbox.enable = true;
|
||||
oxocarbon.enable = true;
|
||||
nord.enable = true;
|
||||
catppuccin.enable = true;
|
||||
base16.enable = true;
|
||||
kanagawa.enable = true;
|
||||
dracula.enable = true;
|
||||
|
||||
};
|
||||
extraPlugins = with pkgs.vimPlugins; [
|
||||
everforest
|
||||
base46
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue