lsp on the workstation

This commit is contained in:
Geir Okkenhaug Jerstad 2024-07-02 15:02:33 +02:00
parent 02bc2398e3
commit 2f4fa4afd6
4 changed files with 89 additions and 3 deletions

15
workstation/zsh.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs;
[
zsh
zsh-completions
nix-zsh-completions
starship
direnv
];
programs.zsh.enable = true;
programs.zsh.syntaxHighlighting.enable = true;
programs.zsh.autosuggestions.enable = true;
}