Skip to content

Instantly share code, notes, and snippets.

@zeitos
Last active January 26, 2023 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeitos/71e21d1993e88f5863946711f4b7a1a6 to your computer and use it in GitHub Desktop.
Save zeitos/71e21d1993e88f5863946711f4b7a1a6 to your computer and use it in GitHub Desktop.
Ubuntu_env
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