nixvim refactor

This commit is contained in:
Hadi
2024-07-01 13:07:12 +00:00
parent 88ae1d29a5
commit 55caf123df
32 changed files with 275 additions and 221 deletions

View File

@@ -0,0 +1,24 @@
{
programs.nixvim= {
plugins = {
lualine.enable = true;
noice.enable = true;
gitsigns = {
enable = true;
settings.current_line_blame = false;
};
bufferline.enable = true;
trouble.enable = true;
which-key.enable=true;
headlines.enable=true;
tagbar.enable =true;
};
keymaps = [
{
key = "<leader>t";
action = "<cmd>TroubleToggle<cr>";
options.desc = "Trouble";
}
];
};
}