135 current 2024-03-02 13:16:19 24.05.20240229.1536926 6.6.18 *

This commit is contained in:
zackartz 2024-03-02 13:16:25 -05:00
parent 1afde17b9c
commit 3babb53b7f

View file

@ -34,17 +34,17 @@
enable = true; enable = true;
}; };
plugins.nvim-jdtls = { # plugins.nvim-jdtls = {
enable = true; # enable = true;
#
cmd = [ # cmd = [
"${pkgs.jdt-language-server}/bin/jdtls" # "${pkgs.jdt-language-server}/bin/jdtls"
"-data" # "-data"
"/home/zack/.cache/jdtls/workspace" # "/home/zack/.cache/jdtls/workspace"
"-configuration" # "-configuration"
"/home/zack/.cache/jdtls/config" # "/home/zack/.cache/jdtls/config"
]; # ];
}; # };
plugins.lsp = { plugins.lsp = {
enable = true; enable = true;
@ -96,6 +96,9 @@
mappingPresets = ["insert"]; mappingPresets = ["insert"];
mapping = { mapping = {
"<CR>" = "cmp.mapping.confirm({ select = true })"; "<CR>" = "cmp.mapping.confirm({ select = true })";
"<C-space>" = "cmp.mapping.complete()";
"<C-b>" = "cmp.mapping.scroll_docs(-4)";
"<C-f>" = "cmp.mapping.scroll_docs(4)";
}; };
}; };