mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> Former-commit-id: a106c7d6be97b9e0459db1c7681a7cb34285c8ee
37 lines
808 B
Nix
37 lines
808 B
Nix
{
|
|
programs.nvf.settings.vim = {
|
|
utility = {
|
|
motion.flash-nvim.enable = true;
|
|
outline.aerial-nvim.enable = true;
|
|
};
|
|
tabline.nvimBufferline.enable = true;
|
|
notes.todo-comments.enable = true;
|
|
assistant.copilot = {
|
|
enable = true;
|
|
cmp.enable = true;
|
|
};
|
|
statusline.lualine.enable = true;
|
|
autocomplete.blink-cmp = {
|
|
enable = true;
|
|
friendly-snippets.enable = true;
|
|
};
|
|
snippets.luasnip.enable = true;
|
|
ui = {
|
|
noice.enable = true;
|
|
colorizer.enable = true;
|
|
};
|
|
git = {
|
|
enable = true;
|
|
gitsigns.enable = true;
|
|
};
|
|
terminal.toggleterm = {
|
|
enable = true;
|
|
lazygit = {
|
|
enable = true;
|
|
mappings.open = "<leader>gl";
|
|
};
|
|
};
|
|
formatter.conform-nvim.enable = true;
|
|
};
|
|
}
|