refactor(nvf): remove unused nvf modules and options
This commit is contained in:
parent
2b97ee96ca
commit
af6a3b6f2c
10 changed files with 1 additions and 42 deletions
|
@ -1,22 +0,0 @@
|
||||||
{
|
|
||||||
avante-nvim = {
|
|
||||||
enable = true;
|
|
||||||
setupOpts = {
|
|
||||||
provider = "gemini";
|
|
||||||
auto_suggestions_provider = "gemini";
|
|
||||||
auto_suggestions = true;
|
|
||||||
windows.ask.floating = true;
|
|
||||||
input = {
|
|
||||||
provider = "snacks";
|
|
||||||
provider_opts.title = "Avante Input";
|
|
||||||
provider_opts.icon = " ";
|
|
||||||
};
|
|
||||||
mappings.suggestion = {
|
|
||||||
accept = "<M-C-L>";
|
|
||||||
next = "<M-C-K>";
|
|
||||||
prev = "<M-C-J>";
|
|
||||||
dismiss = "<M-C-H>";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -5,7 +5,6 @@
|
||||||
friendly-snippets.enable = true;
|
friendly-snippets.enable = true;
|
||||||
sourcePlugins = {
|
sourcePlugins = {
|
||||||
ripgrep.enable = true;
|
ripgrep.enable = true;
|
||||||
spell.enable = true;
|
|
||||||
};
|
};
|
||||||
setupOpts = {
|
setupOpts = {
|
||||||
completion.documentation.auto_show_delay_ms = 0;
|
completion.documentation.auto_show_delay_ms = 0;
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
formatOnSave = true;
|
|
||||||
inlayHints.enable = true;
|
inlayHints.enable = true;
|
||||||
lightbulb.enable = true;
|
lightbulb.enable = true;
|
||||||
lspkind.enable = true;
|
lspkind.enable = true;
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
{
|
|
||||||
}
|
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
scroll = 1;
|
|
||||||
autoindent = true;
|
autoindent = true;
|
||||||
backspace = "indent,eol,start";
|
backspace = "indent,eol,start";
|
||||||
cursorline = true;
|
cursorline = true;
|
||||||
|
@ -7,5 +6,4 @@
|
||||||
shiftwidth = 2;
|
shiftwidth = 2;
|
||||||
smartindent = true;
|
smartindent = true;
|
||||||
tabstop = 2;
|
tabstop = 2;
|
||||||
updatetime = 0;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
statusline = 10;
|
statusline = 10;
|
||||||
winbar = 10;
|
winbar = 10;
|
||||||
};
|
};
|
||||||
activeSection = {
|
#TODO: rice lualine
|
||||||
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
ccc.enable = true;
|
ccc.enable = true;
|
||||||
leetcode-nvim.enable = true;
|
|
||||||
mkdir.enable = true;
|
mkdir.enable = true;
|
||||||
motion.hop.enable = true;
|
motion.hop.enable = true;
|
||||||
yazi-nvim = {
|
yazi-nvim = {
|
||||||
|
|
|
@ -11,23 +11,17 @@ in
|
||||||
syntaxHighlighting = true;
|
syntaxHighlighting = true;
|
||||||
telescope.enable = true;
|
telescope.enable = true;
|
||||||
searchCase = "ignore";
|
searchCase = "ignore";
|
||||||
undoFile.enable = true;
|
|
||||||
fzf-lua.enable = true;
|
fzf-lua.enable = true;
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
git.gitsigns.enable = false;
|
|
||||||
autopairs.nvim-autopairs.enable = true;
|
autopairs.nvim-autopairs.enable = true;
|
||||||
assistant = import ./_nvf/assistant.nix;
|
|
||||||
autocomplete = import ./_nvf/autocomplete.nix { inherit lib; };
|
autocomplete = import ./_nvf/autocomplete.nix { inherit lib; };
|
||||||
binds = import ./_nvf/binds.nix;
|
binds = import ./_nvf/binds.nix;
|
||||||
clipboard = import ./_nvf/clipboard.nix;
|
|
||||||
diagnostics = import ./_nvf/diagnostics.nix;
|
|
||||||
keymaps = import ./_nvf/keymaps.nix;
|
keymaps = import ./_nvf/keymaps.nix;
|
||||||
languages = import ./_nvf/languages.nix;
|
languages = import ./_nvf/languages.nix;
|
||||||
lsp = import ./_nvf/lsp.nix;
|
lsp = import ./_nvf/lsp.nix;
|
||||||
navigation = import ./_nvf/navigation.nix;
|
navigation = import ./_nvf/navigation.nix;
|
||||||
notes = import ./_nvf/notes.nix;
|
notes = import ./_nvf/notes.nix;
|
||||||
options = import ./_nvf/options.nix;
|
options = import ./_nvf/options.nix;
|
||||||
notify = import ./_nvf/notify.nix;
|
|
||||||
snippets = import ./_nvf/snippets.nix { inherit pkgs; };
|
snippets = import ./_nvf/snippets.nix { inherit pkgs; };
|
||||||
statusline = import ./_nvf/statusline.nix;
|
statusline = import ./_nvf/statusline.nix;
|
||||||
treesitter = import ./_nvf/treesitter.nix;
|
treesitter = import ./_nvf/treesitter.nix;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue