Update README and nixvim-base
This commit is contained in:
parent
9cf40ae2a2
commit
c74b560388
2 changed files with 13 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue