refactor(nvf): remove unused nvf modules and options

This commit is contained in:
Mohammad Rafiq 2025-06-30 05:19:20 +08:00
parent 2b97ee96ca
commit af6a3b6f2c
No known key found for this signature in database
10 changed files with 1 additions and 42 deletions

View file

@ -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>";
};
};
};
}

View file

@ -5,7 +5,6 @@
friendly-snippets.enable = true;
sourcePlugins = {
ripgrep.enable = true;
spell.enable = true;
};
setupOpts = {
completion.documentation.auto_show_delay_ms = 0;

View file

@ -1,6 +1,5 @@
{
enable = true;
formatOnSave = true;
inlayHints.enable = true;
lightbulb.enable = true;
lspkind.enable = true;

View file

@ -1,2 +0,0 @@
{
}

View file

@ -1,5 +1,4 @@
{
scroll = 1;
autoindent = true;
backspace = "indent,eol,start";
cursorline = true;
@ -7,5 +6,4 @@
shiftwidth = 2;
smartindent = true;
tabstop = 2;
updatetime = 0;
}

View file

@ -5,8 +5,6 @@
statusline = 10;
winbar = 10;
};
activeSection = {
};
#TODO: rice lualine
};
}

View file

@ -1,6 +1,5 @@
{
ccc.enable = true;
leetcode-nvim.enable = true;
mkdir.enable = true;
motion.hop.enable = true;
yazi-nvim = {

View file

@ -11,23 +11,17 @@ in
syntaxHighlighting = true;
telescope.enable = true;
searchCase = "ignore";
undoFile.enable = true;
fzf-lua.enable = true;
git.enable = true;
git.gitsigns.enable = false;
autopairs.nvim-autopairs.enable = true;
assistant = import ./_nvf/assistant.nix;
autocomplete = import ./_nvf/autocomplete.nix { inherit lib; };
binds = import ./_nvf/binds.nix;
clipboard = import ./_nvf/clipboard.nix;
diagnostics = import ./_nvf/diagnostics.nix;
keymaps = import ./_nvf/keymaps.nix;
languages = import ./_nvf/languages.nix;
lsp = import ./_nvf/lsp.nix;
navigation = import ./_nvf/navigation.nix;
notes = import ./_nvf/notes.nix;
options = import ./_nvf/options.nix;
notify = import ./_nvf/notify.nix;
snippets = import ./_nvf/snippets.nix { inherit pkgs; };
statusline = import ./_nvf/statusline.nix;
treesitter = import ./_nvf/treesitter.nix;