nixvimConfigs/fiesta: remove deprecated attributes to their updated versions

This commit is contained in:
Gabriel Arazas 2024-04-23 11:37:57 +08:00
parent ce60f0bc0a
commit 6a75b4acc1
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 11 additions and 7 deletions

View File

@ -14,7 +14,7 @@ in
plugins.dap.extensions.dap-virtual-text.enable = true; plugins.dap.extensions.dap-virtual-text.enable = true;
plugins.debugprint = { plugins.debugprint = {
enable = true; enable = true;
ignoreTreesitter = false; settings.ignore_treesitter = false;
}; };
keymaps = keymaps =

View File

@ -11,8 +11,10 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
plugins.telescope.enable = true; plugins.telescope.enable = true;
plugins.project-nvim.enable = lib.mkDefault true; plugins.project-nvim = {
plugins.telescope.extensions.project-nvim.enable = config.plugins.project-nvim.enable; enable = lib.mkDefault true;
enableTelescope = true;
};
# Configure all of the keymaps. # Configure all of the keymaps.
keymaps = keymaps =

View File

@ -50,11 +50,13 @@ in
# Enable some more context for me. # Enable some more context for me.
plugins.treesitter-context = { plugins.treesitter-context = {
enable = true; enable = true;
lineNumbers = true; settings = {
maxLines = 7; line_numbers = true;
max_lines = 7;
mode = "cursor"; mode = "cursor";
separator = "*"; separator = "*";
}; };
};
# Some niceties for refactoring. # Some niceties for refactoring.
plugins.treesitter-refactor = { plugins.treesitter-refactor = {