Just use nvim, its faster
This commit is contained in:
parent
a4fe85be41
commit
06afd4066b
2 changed files with 7 additions and 3 deletions
|
@ -8,13 +8,17 @@ cp ./.zcustom ~ -r
|
|||
cp ./.doom.d ~ -r
|
||||
|
||||
cp ./.zshrc ~
|
||||
cp ./.vimrc ~
|
||||
cp ./.ideavimrc ~
|
||||
cp ./.profile ~
|
||||
cp ./.gitconfig ~
|
||||
|
||||
vim +PlugInstall +qall
|
||||
if [ -n "$(command -v vim)" ]; then
|
||||
cp ./.vimrc ~
|
||||
vim +PlugInstall +qall
|
||||
fi
|
||||
|
||||
if [ -n "$(command -v nvim)" ]; then
|
||||
cp ./.vimrc ~
|
||||
mkdir -p $HOME/.config/nvim
|
||||
ln -s ../../.vimrc ~/.config/nvim/init.vim
|
||||
nvim +PlugInstall +qall
|
||||
|
|
|
@ -16,7 +16,7 @@ sudo dnf config-manager --set-enabled fedora-cisco-openh264
|
|||
|
||||
echo 'Installing base packages...'
|
||||
sudo dnf install -y \
|
||||
git tar zsh ack mlocate usbutils neofetch which util-linux-user vim-enhanced
|
||||
git tar zsh ack mlocate usbutils neofetch which util-linux-user neovim
|
||||
|
||||
echo 'Installing fonts'
|
||||
sudo dnf install -y \
|
||||
|
|
Loading…
Reference in a new issue