Last active
January 26, 2023 14:41
-
-
Save zeitos/71e21d1993e88f5863946711f4b7a1a6 to your computer and use it in GitHub Desktop.
Ubuntu_env
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install -y curl wget git fonts-powerline | |
#OH my zsh (https://www.tecmint.com/install-oh-my-zsh-in-ubuntu/) | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# fzf | |
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf | |
cd ~/.fzf/ | |
./install | |
git clone --depth 1 https://github.com/rupa/z.git ~/.z_jump | |
echo '. ~/.z_jump/z.sh' >> ~/.zshrc | |
####VIM#### | |
#Install vundle | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
#add plugins to .vimrc | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'vim-airline/vim-airline' | |
Plugin 'vim-airline/vim-airline-themes' | |
Plugin 'ctrlpvim/ctrlp.vim' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment