mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
Add vimplug installation
This commit is contained in:
parent
5b1edf7023
commit
7953645ef0
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
oh-my-zsh
|
oh-my-zsh
|
||||||
|
configs/nvim/site/autoload
|
|
@ -16,3 +16,6 @@ set completeopt=noinsert,menuone,noselect
|
||||||
set cursorline
|
set cursorline
|
||||||
set relativenumber
|
set relativenumber
|
||||||
|
|
||||||
|
call plug#begin()
|
||||||
|
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
|
||||||
|
call plug#end()
|
||||||
|
|
|
@ -22,8 +22,10 @@ ZSH="$HOME/.dotfiles/oh-my-zsh" sh -c "$(curl -fsSL https://raw.githubuserconten
|
||||||
curl -fsSL https://raw.githubusercontent.com/ivabus/ivabus-zsh-theme/master/ivabus.zsh-theme -o $HOME/.dotfiles/oh-my-zsh/custom/themes/ivabus.zsh-theme > /dev/null 2>&1
|
curl -fsSL https://raw.githubusercontent.com/ivabus/ivabus-zsh-theme/master/ivabus.zsh-theme -o $HOME/.dotfiles/oh-my-zsh/custom/themes/ivabus.zsh-theme > /dev/null 2>&1
|
||||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $HOME/.dotfiles/oh-my-zsh/custom/plugins/zsh-syntax-highlighting > /dev/null 2>&1
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $HOME/.dotfiles/oh-my-zsh/custom/plugins/zsh-syntax-highlighting > /dev/null 2>&1
|
||||||
|
|
||||||
# installing jetbrains mono
|
# installing vimplug
|
||||||
|
curl -fLo "$HOME/.config/nvim/site/autoload/plug.vim" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
|
|
||||||
|
# installing jetbrains mono
|
||||||
if [[ $(uname) = "Linux" ]]
|
if [[ $(uname) = "Linux" ]]
|
||||||
then
|
then
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/install_manual.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/install_manual.sh)"
|
||||||
|
@ -31,8 +33,7 @@ fi
|
||||||
|
|
||||||
# linking dotfiles to their original locations
|
# linking dotfiles to their original locations
|
||||||
|
|
||||||
echo "Linking dotfiles"
|
echo "Linking dotfiles."
|
||||||
|
|
||||||
sh $HOME/.dotfiles/tools/relink.sh
|
sh $HOME/.dotfiles/tools/relink.sh
|
||||||
|
|
||||||
cd $CURRENTDIR
|
cd $CURRENTDIR
|
||||||
|
|
Loading…
Reference in a new issue