Switched from zsh to fish

Add neomutt config
Add mpd config
Update bspwm config
Update sxhkd config
Update qutebrowser config
Update tmux config
Update xinitrc
This commit is contained in:
Uttarayan Mondal
2021-04-13 01:29:14 +05:30
parent c83a41fad6
commit 943cf49146
35 changed files with 749 additions and 42 deletions

10
config/fish/config.fish Normal file
View File

@@ -0,0 +1,10 @@
function man
set oldIFS "$IFS"
set IFS ""
set page (/usr/bin/man "$argv" | col -b)
if ! [ -z "$page" ]
echo "$page" | nvim -R -c 'set ft=man nomod nolist' -
end
set IFS "$oldIFS"
end