Skip to content

Instantly share code, notes, and snippets.

@1eedaegon
Last active September 28, 2021 17:46
Show Gist options
  • Save 1eedaegon/1766d58aa6c06739d9557dd872342eab to your computer and use it in GitHub Desktop.
Save 1eedaegon/1766d58aa6c06739d9557dd872342eab to your computer and use it in GitHub Desktop.
Vim setting
# 개발환경을 새로 잡을 일이 있어서 defualt setting을 기록
# Install bundle with pathogen for package manage
> mkdir -p ~/.vim/autoload ~/.vim/bundle && \
> curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
# Init pathogen
# No source, parsed from vim
> echo "execute pathogen#infect()" >> ~/.vimrc
# execute pathogen#infect()
# syntax on
# filetype plugin indent on
# set autoindent
# set smartindent
# set shiftwidth=4
# set tabstop=4
# airline
> git clone https://github.com/vim-airline/vim-airline.git ~/.vim/bundle/vim-airline
# ctrlP
> git clone https://github.com/ctrlpvim/ctrlp.vim.git ~/.vim/bundle/ctrlp.vim
# nerdtree
> git clone https://github.com/preservim/nerdtree.git ~/.vim/bundle/nerdtree
# Language
> git clone https://github.com/pangloss/vim-javascript.git ~/.vim/bundle/vim-javascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment