mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
nixvimConfigs/fiesta: remove deprecated attributes to their updated versions
This commit is contained in:
parent
ce60f0bc0a
commit
6a75b4acc1
@ -14,7 +14,7 @@ in
|
||||
plugins.dap.extensions.dap-virtual-text.enable = true;
|
||||
plugins.debugprint = {
|
||||
enable = true;
|
||||
ignoreTreesitter = false;
|
||||
settings.ignore_treesitter = false;
|
||||
};
|
||||
|
||||
keymaps =
|
||||
|
@ -11,8 +11,10 @@ in
|
||||
config = lib.mkIf cfg.enable {
|
||||
plugins.telescope.enable = true;
|
||||
|
||||
plugins.project-nvim.enable = lib.mkDefault true;
|
||||
plugins.telescope.extensions.project-nvim.enable = config.plugins.project-nvim.enable;
|
||||
plugins.project-nvim = {
|
||||
enable = lib.mkDefault true;
|
||||
enableTelescope = true;
|
||||
};
|
||||
|
||||
# Configure all of the keymaps.
|
||||
keymaps =
|
||||
|
@ -50,10 +50,12 @@ in
|
||||
# Enable some more context for me.
|
||||
plugins.treesitter-context = {
|
||||
enable = true;
|
||||
lineNumbers = true;
|
||||
maxLines = 7;
|
||||
mode = "cursor";
|
||||
separator = "*";
|
||||
settings = {
|
||||
line_numbers = true;
|
||||
max_lines = 7;
|
||||
mode = "cursor";
|
||||
separator = "*";
|
||||
};
|
||||
};
|
||||
|
||||
# Some niceties for refactoring.
|
||||
|
Loading…
Reference in New Issue
Block a user