rm debugger, add jj

This commit is contained in:
iofq 2025-02-03 02:16:10 -06:00
parent 01366c625a
commit 78a7d107e5
3 changed files with 67 additions and 62 deletions

View file

@ -28,7 +28,7 @@ with lib;
extraPython3Packages ? p: [], # Additional python 3 packages
withPython3 ? false, # Build Neovim with Python 3 support?
withRuby ? false, # Build Neovim with Ruby support?
withNodeJs ? true, # Build Neovim with NodeJS support?
withNodeJs ? false, # Build Neovim with NodeJS support?
withSqlite ? true, # Add sqlite? This is a dependency for some plugins
# You probably don't want to create vi or vim aliases
# if the appName is something different than "nvim"

View file

@ -32,11 +32,11 @@ with final.pkgs.lib; let
none-ls-nvim
nightfox-nvim
nvim-autopairs
nvim-dap
nvim-dap-go
nvim-dap-ui
# nvim-dap
# nvim-dap-go
# nvim-dap-ui
nvim-lspconfig
nvim-nio
# nvim-nio
nvim-treesitter-context
nvim-treesitter-textobjects
nvim-treesitter.withAllGrammars
@ -67,12 +67,16 @@ with final.pkgs.lib; let
# debuggers
delve
#other
jujutsu
];
in {
nvim-pkg = mkNeovim {
plugins = all-plugins;
appName = "nvim";
extraPackages = basePackages ++ extraPackages;
withNodeJs = true;
};
nvim-min-pkg = mkNeovim {
@ -82,6 +86,7 @@ in {
ignoreConfigRegexes = [
".*lsp.lua"
".*debug.lua"
".*ai.lua"
];
};