1
0
Fork 0

module(neovim): update plugins

This commit is contained in:
Antoine Langlois 2024-03-27 14:25:09 +01:00
parent ca884cc94b
commit b5a3c2be7d
Signed by: DataHearth
GPG Key ID: 946E2D0C410C7B3D
5 changed files with 10 additions and 10 deletions

View File

@ -87,6 +87,7 @@
cat = "bat";
dc = "docker compose";
pnpm-upgrade = "pnpm add -g pnpm";
cd = "z";
};
initExtra = ''
neofetch

View File

@ -49,6 +49,10 @@ in
action = "<cmd>CHADopen<cr>";
key = "<C-t>";
}
{
action = "<cmd>TroubleToggle<cr>";
key = "<C-S-t>";
}
{
action = ''
function()
@ -101,7 +105,7 @@ in
todo-comments.enable = true;
lualine.enable = true;
luasnip.enable = true;
autoclose.enable = true;
nvim-autopairs.enable = true;
illuminate.enable = true;
copilot-cmp.enable = true;
cmp_luasnip.enable = true;
@ -110,8 +114,8 @@ in
cmp-path.enable = true;
cmp-buffer.enable = true;
crates-nvim.enable = true;
treesitter.enable = true;
telescope = import ./plugins/telescope.nix;
treesitter = import ./plugins/treesitter.nix;
trouble = import ./plugins/trouble.nix;
indent-blankline = import ./plugins/indent-blankline.nix;
dashboard = import ./plugins/dashboard.nix;

View File

@ -1,3 +0,0 @@
{
enable = true;
}

View File

@ -1,4 +0,0 @@
{
enable = true;
languageRegister = {};
}

View File

@ -1,4 +1,6 @@
{
enable = true;
settings.auto_close = true;
settings = {
auto_close = true;
};
}