mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
nixvim refactor
This commit is contained in:
24
home/programs/nvim/plugins/ui.nix
Normal file
24
home/programs/nvim/plugins/ui.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user