Merge remote-tracking branch 'origin/master' into nixos-21.11

This commit is contained in:
Giulio De Pasquale 2022-11-08 19:07:36 +01:00
commit 54cf90be5f

View File

@ -9,6 +9,20 @@
file.".config/helix/config.toml".text = '' file.".config/helix/config.toml".text = ''
theme = "monokai" theme = "monokai"
[editor]
cursorline = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.lsp]
display-messages = true
[editor.indent-guides]
render = true
''; '';
packages = with pkgs.unstable; [ packages = with pkgs.unstable; [
@ -17,6 +31,7 @@
rust-analyzer rust-analyzer
rnix-lsp rnix-lsp
python310Packages.python-lsp-server python310Packages.python-lsp-server
texlab
]; ];
}; };
} }