mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +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.dap.extensions.dap-virtual-text.enable = true;
|
||||||
plugins.debugprint = {
|
plugins.debugprint = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ignoreTreesitter = false;
|
settings.ignore_treesitter = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
keymaps =
|
keymaps =
|
||||||
|
@ -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 =
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user