More cleanup
This commit is contained in:
parent
6b374f6278
commit
e1ea5a28c3
|
@ -4,6 +4,7 @@
|
||||||
command -v fish >/dev/null 2>&1 && grep fish /etc/shells >/dev/null 2>&1 && {
|
command -v fish >/dev/null 2>&1 && grep fish /etc/shells >/dev/null 2>&1 && {
|
||||||
echo "This user is configured to use 'fish' as its primary shell."
|
echo "This user is configured to use 'fish' as its primary shell."
|
||||||
echo " You may want to run 'chsh' and set your shell to $(grep fish /etc/shells | head -n1)'."
|
echo " You may want to run 'chsh' and set your shell to $(grep fish /etc/shells | head -n1)'."
|
||||||
echo " You may also temporarily use fish by simply running 'fish'."
|
echo " Once that's done, simply run 'fish'."
|
||||||
|
echo " You can also try fish temporarily by running 'fish'. No 'chsh' commitment required."
|
||||||
echo " If you're in bash for intentionally for some reason, then ignore this message."
|
echo " If you're in bash for intentionally for some reason, then ignore this message."
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,10 @@ set --export --universal MANPAGER 'env MANWIDTH="" nvim --cmd "let g:prosession_
|
||||||
if command --search --quiet nvim
|
if command --search --quiet nvim
|
||||||
set --export --universal EDITOR nvim
|
set --export --universal EDITOR nvim
|
||||||
set --export --universal VISUAL nvim
|
set --export --universal VISUAL nvim
|
||||||
else
|
else if command --search --quiet vim
|
||||||
|
set --export --universal EDITOR vim
|
||||||
|
set --export --universal VISUAL vim
|
||||||
|
else if command --search --quiet vi
|
||||||
set --export --universal EDITOR vi
|
set --export --universal EDITOR vi
|
||||||
set --export --universal VISUAL vi
|
set --export --universal VISUAL vi
|
||||||
end
|
end
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/root/.config/lytedev-dotfiles/common/colors/vim
|
/home/daniel/.home/.config/lytedev-dotfiles/common/colors/vim
|
|
@ -10,7 +10,7 @@ take what you like.
|
||||||
|
|
||||||
# Basic Setup
|
# Basic Setup
|
||||||
|
|
||||||
curl -LsSf https://lyte.dev/df.sh | sh
|
curl -Ss https://lyte.dev/df.sh | sh
|
||||||
|
|
||||||
## I don't like `curl ... | sh`
|
## I don't like `curl ... | sh`
|
||||||
|
|
||||||
|
@ -44,6 +44,7 @@ And then link them yourself (note the replacing of slashes with dashes):
|
||||||
ln -s (pwd)/os/linux/arch $ENV_PATH/os-linux-arch
|
ln -s (pwd)/os/linux/arch $ENV_PATH/os-linux-arch
|
||||||
ln -s (pwd)/host/laptop $ENV_PATH/host-laptop
|
ln -s (pwd)/host/laptop $ENV_PATH/host-laptop
|
||||||
ln -s (pwd)/host/laptop/third $ENV_PATH/os-laptop-third
|
ln -s (pwd)/host/laptop/third $ENV_PATH/os-laptop-third
|
||||||
|
# etc...
|
||||||
|
|
||||||
And run setup again once you've finished linking all related environments:
|
And run setup again once you've finished linking all related environments:
|
||||||
|
|
||||||
|
|
Reference in a new issue