From c74b560388c1f17073741d7fb4f7eb90d3937600 Mon Sep 17 00:00:00 2001 From: albert Date: Mon, 19 Feb 2024 12:58:55 +0900 Subject: [PATCH] Update README and nixvim-base --- README.md | 2 ++ home-manager/common/software/cli/nixvim-base.nix | 11 +++++++++++ 2 files changed, 13 insertions(+) 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;