diff options
| author | Seth Flynn <[email protected]> | 2021-11-22 23:42:32 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2021-11-23 01:40:34 -0500 |
| commit | 54edcf280864dcd2bfcbca6b8b2e056ce1270b99 (patch) | |
| tree | efb17b8b850acfe6925252fa2d93d9bd996a676b /fish/.config | |
| parent | e2cfdf8ee46649d92ff1d1c521ef1bcda45c3d64 (diff) | |
add more stuff
Diffstat (limited to 'fish/.config')
| -rw-r--r-- | fish/.config/fish/config.fish | 5 | ||||
| -rw-r--r-- | fish/.config/fish/functions/aur-remove.fish | 4 | ||||
| -rw-r--r-- | fish/.config/fish/functions/ls.fish | 3 | ||||
| -rw-r--r-- | fish/.config/fish/functions/vim.fish | 3 |
4 files changed, 11 insertions, 4 deletions
diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index 84fe466..78d52f3 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -1,12 +1,9 @@ #!/bin/fish # defaults +set -Ux VISUAL nvim set -Ux EDITOR nvim set -Ux PAGER moar -# abbrs -abbr ls exa -abbr vim nvim - # prompt starship init fish | source diff --git a/fish/.config/fish/functions/aur-remove.fish b/fish/.config/fish/functions/aur-remove.fish new file mode 100644 index 0000000..e7749d5 --- /dev/null +++ b/fish/.config/fish/functions/aur-remove.fish @@ -0,0 +1,4 @@ +function aur-remove { + repo-remove /var/lib/repo/aur/aur.db.tar.gz $argv +done + diff --git a/fish/.config/fish/functions/ls.fish b/fish/.config/fish/functions/ls.fish new file mode 100644 index 0000000..9d08de4 --- /dev/null +++ b/fish/.config/fish/functions/ls.fish @@ -0,0 +1,3 @@ +function ls + exa $argv +end diff --git a/fish/.config/fish/functions/vim.fish b/fish/.config/fish/functions/vim.fish new file mode 100644 index 0000000..f0a542e --- /dev/null +++ b/fish/.config/fish/functions/vim.fish @@ -0,0 +1,3 @@ +function vim + nvim $argv +end |
