Skip to content

Commit

Permalink
feat: add neodev plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
horriblename committed Sep 23, 2023
1 parent bdebf01 commit 456295b
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 33 deletions.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@
flake = false;
};

neodev-nvim = {
url = "github:folke/neodev.nvim";
flake = false;
};

elixir-ls = {
url = "github:elixir-lsp/elixir-ls";
flake = false;
Expand Down
1 change: 1 addition & 0 deletions lib/types/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ with lib; let
"vim-repeat"
"smartcolumn"
"project-nvim"
"neodev-nvim"
"elixir-ls"
"elixir-tools"
"nvim-colorizer-lua"
Expand Down
1 change: 1 addition & 0 deletions modules/languages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ in {
./html.nix
./svelte.nix
./java.nix
./lua.nix
];

options.vim.languages = {
Expand Down
63 changes: 30 additions & 33 deletions modules/languages/lua.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,57 +6,54 @@
}:
with lib;
with builtins; let
cfg = config.vim.languages.go;

defaultServer = "lua-ls";
servers = {
lua-ls = {
package = pkgs.lua-language-server;
lspConfig = ''
lspconfig.lua_ls.setup {
capabilities = capabilities;
on_attach = default_on_attach;
cmd = ${
if isList cfg.lsp.package
then nvim.lua.expToLua cfg.lsp.package
else ''{"${getExe cfg.lsp.package}"}''
};
}
'';
};
};
cfg = config.vim.languages.lua;
in {
options.vim.languages.lua = {
enable = mkEnableOption "Lua language support";
treesitter = {
enable = mkOption "Enable Lua Treesitter support" // {default = config.vim.languages.enableTreesitter;};
enable = mkEnableOption "Enable Lua Treesitter support" // {default = config.vim.languages.enableTreesitter;};
package = nvim.types.mkGrammarOption pkgs "lua";
};
lsp = {
enable = mkOption "Enable Lua LSP support" // {default = config.vim.languages.enableLSP;};

server = mkOption {
description = "Lua LSP server to use";
type = with types; enum (attrNames servers);
default = defaultServer;
};
enable = mkEnableOption "Enable Lua LSP support via LuaLS" // {default = config.vim.languages.enableLSP;};

package = mkOption {
description = "Lua LSP server package, or the command to run as a list of strings";
description = "LuaLS package, or the command to run as a list of strings";
type = with types; either package (listOf str);
default = servers.${cfg.lsp.server}.package;
default = pkgs.lua-language-server;
};

neodev.enable = mkEnableOption "Enable neodev.nvim integration";
};
};

config = mkIf cfg.enable (mkMerge [
(mkIf cfg.treesitter.enable {
vim.treesitter.enable = true;
vim.treesitter.grammars = [cfg.treesitter.package];
})

(mkIf cfg.lsp.enable {
vim.lsp.lspconfig.enable = true;
vim.lsp.lspconfig.sources.lua-lsp = servers.${cfg.lsp.server}.lspConfig;
vim.lsp.lspconfig.sources.lua-lsp = ''
lspconfig.lua_ls.setup {
capabilities = capabilities;
on_attach = default_on_attach;
${optionalString cfg.lsp.neodev.enable "before_init = require('neodev.lsp').before_init;"}
cmd = ${
if isList cfg.lsp.package
then nvim.lua.expToLua cfg.lsp.package
else ''{"${getExe cfg.lsp.package}"}''
};
}
'';
})

(mkIf cfg.treesitter.enable {
vim.treesitter.enable = true;
vim.treesitter.grammars = [cfg.treesitter.package];
(mkIf cfg.lsp.neodev.enable {
vim.startPlugins = ["neodev-nvim"];
vim.luaConfigRC.neodev = nvim.dag.entryBefore ["lua-lsp"] ''
require("neodev").setup({})
'';
})
]);
}

0 comments on commit 456295b

Please sign in to comment.