2024-05-07 22:49:00 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
2024-05-25 20:28:35 -04:00
|
|
|
pkgs,
|
2024-05-07 22:49:00 -04:00
|
|
|
...
|
|
|
|
}: let
|
2024-08-31 19:16:06 -04:00
|
|
|
inherit (lib) mkIf;
|
2024-11-22 02:48:41 -05:00
|
|
|
|
|
|
|
cfg = config.programs.neovim;
|
2024-05-07 22:49:00 -04:00
|
|
|
in
|
2024-11-22 02:48:41 -05:00
|
|
|
mkIf cfg.enableIde {
|
2024-05-07 22:49:00 -04:00
|
|
|
programs = {
|
|
|
|
neovim = {
|
|
|
|
withPython3 = true;
|
|
|
|
|
2024-11-26 23:36:33 -05:00
|
|
|
extraPython3Packages = py:
|
|
|
|
with py; ([
|
|
|
|
python-lsp-server
|
|
|
|
]
|
|
|
|
++ python-lsp-server.optional-dependencies.all);
|
|
|
|
|
|
|
|
extraPackages = with pkgs.python3Packages; ([
|
|
|
|
python-lsp-server
|
|
|
|
]
|
|
|
|
++ python-lsp-server.optional-dependencies.all);
|
2024-05-07 22:49:00 -04:00
|
|
|
|
2024-05-11 20:10:45 -04:00
|
|
|
extraLuaConfig =
|
2024-06-09 22:49:30 -04:00
|
|
|
# lua
|
2024-05-11 20:10:45 -04:00
|
|
|
''
|
2024-11-26 23:36:33 -05:00
|
|
|
require('lspconfig').pylsp.setup({
|
2024-07-28 02:54:34 -04:00
|
|
|
capabilities = require('cmp_nvim_lsp').default_capabilities(),
|
2024-11-26 23:36:33 -05:00
|
|
|
settings = {
|
|
|
|
pylsp = {
|
|
|
|
plugins = {
|
|
|
|
pycodestyle = {
|
|
|
|
maxLineLength = 100,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-07-28 02:54:34 -04:00
|
|
|
});
|
2024-05-11 20:10:45 -04:00
|
|
|
'';
|
2024-05-07 22:49:00 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|