Compare commits
No commits in common. "382b48799a2b8a785015c4bbe34f3fbc8094b82e" and "39557554f5f831a499b2e15e6ca66112b1430df0" have entirely different histories.
382b48799a
...
39557554f5
|
@ -7,9 +7,11 @@
|
||||||
libsigrok
|
libsigrok
|
||||||
openocd
|
openocd
|
||||||
platformio
|
platformio
|
||||||
|
cynthion
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
cynthion
|
||||||
glasgow
|
glasgow
|
||||||
jlink
|
jlink
|
||||||
kicad
|
kicad
|
||||||
|
|
|
@ -67,19 +67,22 @@ lib.setAttrByPath setPath (
|
||||||
};
|
};
|
||||||
|
|
||||||
# LSP
|
# LSP
|
||||||
plugins.rustaceanvim.enable = cfg.plugins.lsp.enable;
|
plugins.rust-tools = {
|
||||||
|
enable = cfg.plugins.lsp.enable;
|
||||||
|
server.standalone = false;
|
||||||
|
};
|
||||||
plugins.clangd-extensions.enable = cfg.plugins.lsp.enable;
|
plugins.clangd-extensions.enable = cfg.plugins.lsp.enable;
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = lib.mkDefault true;
|
enable = lib.mkDefault true;
|
||||||
servers = {
|
servers = {
|
||||||
clangd.enable = cfg.plugins.lsp.enable;
|
clangd.enable = cfg.plugins.lsp.enable;
|
||||||
java_language_server.enable = cfg.plugins.lsp.enable;
|
java-language-server.enable = cfg.plugins.lsp.enable;
|
||||||
jsonls.enable = cfg.plugins.lsp.enable;
|
jsonls.enable = cfg.plugins.lsp.enable;
|
||||||
nil_ls.enable = cfg.plugins.lsp.enable;
|
nil-ls.enable = cfg.plugins.lsp.enable;
|
||||||
omnisharp.enable = cfg.plugins.lsp.enable;
|
omnisharp.enable = cfg.plugins.lsp.enable;
|
||||||
pylsp.enable = cfg.plugins.lsp.enable;
|
pylsp.enable = cfg.plugins.lsp.enable;
|
||||||
texlab.enable = cfg.plugins.lsp.enable;
|
texlab.enable = cfg.plugins.lsp.enable;
|
||||||
ts_ls.enable = cfg.plugins.lsp.enable;
|
ts-ls.enable = cfg.plugins.lsp.enable;
|
||||||
};
|
};
|
||||||
|
|
||||||
keymaps = {
|
keymaps = {
|
||||||
|
|
Loading…
Reference in a new issue