about summary refs log tree commit diff stats
path: root/modules/home/conf/nvim/plgs/lsp/keymaps
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/home/conf/nvim/plgs/lsp/keymaps/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/home/conf/nvim/plgs/lsp/keymaps/default.nix b/modules/home/conf/nvim/plgs/lsp/keymaps/default.nix
index e176461e..b1276639 100644
--- a/modules/home/conf/nvim/plgs/lsp/keymaps/default.nix
+++ b/modules/home/conf/nvim/plgs/lsp/keymaps/default.nix
@@ -53,18 +53,16 @@
     keymaps = [
       {
         key = "<space>f";
-        action = "function() vim.lsp.buf.format { async = true } end";
-        lua = true;
+        action.__raw = "function() vim.lsp.buf.format { async = true } end";
         options.desc = "[F]ormat the current buffer (asynchronously)";
       }
       {
         key = "<space>wl";
-        action = ''
+        action.__raw = ''
           function()
             print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
           end
         '';
-        lua = true;
         options.desc = "[W]orkspace folders [l]ist";
       }
     ];