This commit is contained in:
Soliprem 2024-09-27 10:09:43 +02:00
parent 06a296a32b
commit 4f151d63be
4 changed files with 19 additions and 2 deletions

View file

@ -1373,6 +1373,18 @@
"type": "github"
}
},
"plugin-otter": {
"flake": false,
"locked": {
"narHash": "sha256-BvEhaaP13ZVfzdMcmEii8QbVBZnUMZNrBcyCF0vyiW4=",
"type": "file",
"url": "https://github.com/jmbuhr/otter.nvim"
},
"original": {
"type": "file",
"url": "https://github.com/jmbuhr/otter.nvim"
}
},
"plugin-oxocarbon": {
"flake": false,
"locked": {
@ -1861,6 +1873,7 @@
"plugin-obsidian-nvim": "plugin-obsidian-nvim",
"plugin-onedark": "plugin-onedark",
"plugin-orgmode-nvim": "plugin-orgmode-nvim",
"plugin-otter": "plugin-otter",
"plugin-oxocarbon": "plugin-oxocarbon",
"plugin-plenary-nvim": "plugin-plenary-nvim",
"plugin-project-nvim": "plugin-project-nvim",

View file

@ -156,6 +156,11 @@
flake = false;
};
plugin-otter = {
url = "https://github.com/jmbuhr/otter.nvim";
flake = false;
};
# Language support
plugin-sqls-nvim = {
url = "github:nanotee/sqls.nvim";

View file

@ -23,7 +23,7 @@ in {
pluginRC.otter = entryAnywhere ''
-- Enable otter diagnostics viewer
require("otter").setup {}
require("otter-nvim").setup()
'';
};
};

View file

@ -5,7 +5,6 @@ in {
options.vim.lsp = {
otter = {
enable = mkEnableOption "Otter LSP Injector";
mappings = {
toggle = mkMappingOption "Activate LSP on Cursor Position [otter]" "<leader>oa";
};