From 26338a9f3514a15f2a6a03350f004205e2e12c37 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sun, 9 Jun 2024 16:49:22 +0300 Subject: [PATCH] neovim: add missed nlspsettings plugin --- neovim/dev.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/neovim/dev.nix b/neovim/dev.nix index b97acbb..5da1f3d 100644 --- a/neovim/dev.nix +++ b/neovim/dev.nix @@ -59,6 +59,12 @@ in # Enable fast navigation between windows vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ]; + plugin.nlsp-settings-nvim = { + enable = true; + name = "nlspsettings"; + setupSettings = { }; + }; + plugins.style.nvim-treesitter.extraGrammars = { tree-sitter-d2 = rec { language = "d2";