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
|
* [ ] Security hardening / scans / etc
|
||||||
* [ ] Where possible, convert cronjobs to systemd services / timers
|
* [ ] Where possible, convert cronjobs to systemd services / timers
|
||||||
* [ ] Replace fuzzel with rofi
|
* [ ] Replace fuzzel with rofi
|
||||||
|
* [ ] Update disko configs away from 'table'
|
||||||
|
* See ./nixos/hosts/nixos-framework/disks-gpt.nix
|
||||||
|
|
||||||
## Home-Manager
|
## Home-Manager
|
||||||
* [ ] Figure out what the home-manager `account` options are for.
|
* [ ] Figure out what the home-manager `account` options are for.
|
||||||
|
|
|
@ -135,11 +135,22 @@
|
||||||
trouble.enable = true;
|
trouble.enable = true;
|
||||||
# Indentation guides
|
# Indentation guides
|
||||||
indent-blankline.enable = true;
|
indent-blankline.enable = true;
|
||||||
|
# Surround text blocks
|
||||||
|
surround.enable = true;
|
||||||
# cmp
|
# cmp
|
||||||
cmp-buffer.enable = true;
|
cmp-buffer.enable = true;
|
||||||
cmp-path.enable = true;
|
cmp-path.enable = true;
|
||||||
cmp-nvim-lsp.enable = true;
|
cmp-nvim-lsp.enable = true;
|
||||||
|
|
||||||
|
# Dashboard
|
||||||
|
dashboard = {
|
||||||
|
enable = true;
|
||||||
|
header = [
|
||||||
|
"Test"
|
||||||
|
];
|
||||||
|
footer = [ "Testing" ];
|
||||||
|
};
|
||||||
|
|
||||||
# List of linters for nixvim
|
# List of linters for nixvim
|
||||||
lint = {
|
lint = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue