├── .gitignore ├── .vim ├── after │ └── snippets │ │ ├── javascript.snippets │ │ └── ls.snippets └── colors │ ├── ir_black.vim │ └── reloaded.vim ├── README.mkd ├── gvimrc ├── init.sh └── vimrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vim/after/snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/.vim/after/snippets/javascript.snippets -------------------------------------------------------------------------------- /.vim/after/snippets/ls.snippets: -------------------------------------------------------------------------------- 1 | snippet cl 2 | console.log ${0} 3 | -------------------------------------------------------------------------------- /.vim/colors/ir_black.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/.vim/colors/ir_black.vim -------------------------------------------------------------------------------- /.vim/colors/reloaded.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/.vim/colors/reloaded.vim -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/README.mkd -------------------------------------------------------------------------------- /gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/gvimrc -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/init.sh -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undoZen/vimrc/HEAD/vimrc --------------------------------------------------------------------------------