Adjust theme a little, add alias nve

nve stands for nvim edit and utilized the nvd alias to open my vim
config in a way that I can see changes prior to running nix. The nvd
alias is short for nvim dots and is just a shortcut to opening the
configs within my  dots repo and having that nvim session use those
configs directly instead of the configs in the default location.
This commit is contained in:
Gene Liverman 2024-01-04 16:27:48 -05:00
parent e7f8f82027
commit aabc2e2a0e
2 changed files with 46 additions and 0 deletions

View file

@ -290,6 +290,7 @@ in {
gpge = "gpg2 --encrypt --sign --armor -r ";
hubpr = "hub pull-request --push --browse";
nvd = "NVIM_APPNAME=nvim-dots nvim";
nve = "nvd ~/repos/dots/modules/home-manager/files/nvim/lua";
pssh = "ssh -o 'UserKnownHostsFile /dev/null' -o 'StrictHostKeyChecking no' -o PubkeyAcceptedKeyTypes=+ssh-rsa -o HostKeyAlgorithms=+ssh-rsa -o KexAlgorithms=+diffie-hellman-group1-sha1 -i ~/.ssh/id_rsa-acceptance";
sal = "ssh-add -L";
st = "open -a SourceTree";