diff options
| author | Seth Flynn <[email protected]> | 2021-11-01 13:18:25 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2021-11-01 13:18:25 -0400 |
| commit | 2eb839dcdd509e2dbc584ebd57a4d7dd880b8eee (patch) | |
| tree | 816b51f7255ca14751b99576bd33a88d54606060 /shells | |
| parent | 72af52eaaa11f93f1f765b0847932d2565709a53 (diff) | |
add fish shell config
Diffstat (limited to 'shells')
| -rw-r--r-- | shells/.config/fish/config.fish | 3 | ||||
| -rw-r--r-- | shells/.config/fish/functions/ls.fish | 3 | ||||
| -rw-r--r-- | shells/.config/fish/functions/vim.fish | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/shells/.config/fish/config.fish b/shells/.config/fish/config.fish new file mode 100644 index 0000000..c0749b6 --- /dev/null +++ b/shells/.config/fish/config.fish @@ -0,0 +1,3 @@ +#!/bin/fish + +starship init fish | source diff --git a/shells/.config/fish/functions/ls.fish b/shells/.config/fish/functions/ls.fish new file mode 100644 index 0000000..9d08de4 --- /dev/null +++ b/shells/.config/fish/functions/ls.fish @@ -0,0 +1,3 @@ +function ls + exa $argv +end diff --git a/shells/.config/fish/functions/vim.fish b/shells/.config/fish/functions/vim.fish new file mode 100644 index 0000000..f0a542e --- /dev/null +++ b/shells/.config/fish/functions/vim.fish @@ -0,0 +1,3 @@ +function vim + nvim $argv +end |
