diff --git a/README.md b/README.md index 6995beb2..2b62a43b 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ nix develop -c /etc/nixos/git/docs/setup.sh * [ ] Security hardening / scans / etc * [ ] Where possible, convert cronjobs to systemd services / timers * [ ] Replace fuzzel with rofi +* [ ] Update disko configs away from 'table' + * See ./nixos/hosts/nixos-framework/disks-gpt.nix ## Home-Manager * [ ] Figure out what the home-manager `account` options are for. diff --git a/home-manager/common/software/cli/nixvim-base.nix b/home-manager/common/software/cli/nixvim-base.nix index 15c105b7..a76a8767 100644 --- a/home-manager/common/software/cli/nixvim-base.nix +++ b/home-manager/common/software/cli/nixvim-base.nix @@ -135,11 +135,22 @@ trouble.enable = true; # Indentation guides indent-blankline.enable = true; + # Surround text blocks + surround.enable = true; # cmp cmp-buffer.enable = true; cmp-path.enable = true; cmp-nvim-lsp.enable = true; + # Dashboard + dashboard = { + enable = true; + header = [ + "Test" + ]; + footer = [ "Testing" ]; + }; + # List of linters for nixvim lint = { enable = true;