Cleanup fish shell config
This commit is contained in:
parent
9faa373f11
commit
51016c03d2
|
@ -8,9 +8,9 @@ set -g man_standout -o blue
|
||||||
set -g man_bold -o magenta
|
set -g man_bold -o magenta
|
||||||
|
|
||||||
# Text Editor
|
# Text Editor
|
||||||
export EDITOR="vim"
|
set -x EDITOR vim
|
||||||
# ZFS GRUB
|
# ZFS GRUB
|
||||||
export ZPOOL_VDEV_NAME_PATH=1
|
set -x ZPOOL_VDEV_NAME_PATH 1
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
alias f "fff"
|
alias f "fff"
|
||||||
|
@ -29,24 +29,19 @@ function fish_title
|
||||||
end
|
end
|
||||||
|
|
||||||
# Compiler
|
# Compiler
|
||||||
export CC=/usr/bin/clang
|
set -x CC /usr/bin/clang
|
||||||
export CXX=/usr/bin/clang++
|
set -x CXX /usr/bin/clang++
|
||||||
|
|
||||||
# Additional paths
|
# Additional paths
|
||||||
set PATH /opt/texlive/2019/bin/x86_64-linux/ /bin /usr/bin /usr/local/bin /usr/local/sbin /usr/sbin /sbin
|
set PATH /opt/texlive/2019/bin/x86_64-linux/ /bin /usr/bin /usr/local/bin /usr/local/sbin /usr/sbin /sbin
|
||||||
|
set PATH $PATH /home/coolneng/.local/bin
|
||||||
|
|
||||||
# fff
|
# fff
|
||||||
## Directory color [0-9]
|
## Directory color [0-9]
|
||||||
export FFF_COL1=3
|
set -x FFF_COL1 3
|
||||||
export FFF_COL2=8
|
set -x FFF_COL2 8
|
||||||
## Favourites (keys 1-9) (dir or file)
|
## Favourites (keys 1-9) (dir or file)
|
||||||
export FFF_FAV1=/home/coolneng/Nextcloud/Documents/Archive-uni/Second\ year/
|
set -x FFF_FAV1 /home/coolneng/Nextcloud/Documents/Archive-uni/Second\ year/
|
||||||
export FFF_FAV2=/home/coolneng/Nextcloud/Documents/Papers
|
set -x FFF_FAV2 /home/coolneng/Nextcloud/Documents/Papers
|
||||||
export FFF_FAV3=/home/coolneng/Nextcloud/Documents/Books/Academic/
|
set -x FFF_FAV3 /home/coolneng/Nextcloud/Documents/Books/Academic/
|
||||||
export FFF_FAV4=/home/coolneng/Nextcloud/Documents/Extracurricular/
|
set -x FFF_FAV4 /home/coolneng/Nextcloud/Documents/Extracurricular/
|
||||||
|
|
||||||
# Created by `userpath` on 2019-08-24 20:27:00
|
|
||||||
set PATH $PATH /root/.local/bin
|
|
||||||
|
|
||||||
# Created by `userpath` on 2019-08-24 20:27:58
|
|
||||||
set PATH $PATH /home/coolneng/.local/bin
|
|
||||||
|
|
Loading…
Reference in New Issue