-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from horriblename/feat-lsp-lua
- Loading branch information
Showing
6 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ in { | |
./html.nix | ||
./svelte.nix | ||
./java.nix | ||
./lua.nix | ||
]; | ||
|
||
options.vim.languages = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
pkgs, | ||
config, | ||
lib, | ||
... | ||
}: | ||
with lib; | ||
with builtins; let | ||
cfg = config.vim.languages.lua; | ||
in { | ||
options.vim.languages.lua = { | ||
enable = mkEnableOption "Lua language support"; | ||
treesitter = { | ||
enable = mkEnableOption "Enable Lua Treesitter support" // {default = config.vim.languages.enableTreesitter;}; | ||
package = nvim.types.mkGrammarOption pkgs "lua"; | ||
}; | ||
lsp = { | ||
enable = mkEnableOption "Enable Lua LSP support via LuaLS" // {default = config.vim.languages.enableLSP;}; | ||
|
||
package = mkOption { | ||
description = "LuaLS package, or the command to run as a list of strings"; | ||
type = with types; either package (listOf str); | ||
default = pkgs.lua-language-server; | ||
}; | ||
|
||
neodev.enable = mkEnableOption "Enable neodev.nvim integration, useful for neovim plugin developers"; | ||
}; | ||
}; | ||
|
||
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 = '' | ||
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.lsp.neodev.enable { | ||
vim.startPlugins = ["neodev-nvim"]; | ||
vim.luaConfigRC.neodev = nvim.dag.entryBefore ["lua-lsp"] '' | ||
require("neodev").setup({}) | ||
''; | ||
}) | ||
]); | ||
} |