├── .gitignore ├── .gvimrc ├── README.md ├── colors ├── solarized.vim ├── twilight.vim └── vilight.vim ├── vimrc └── vundle-plugins /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | bundle/* 4 | sessions/* 5 | -------------------------------------------------------------------------------- /.gvimrc: -------------------------------------------------------------------------------- 1 | set guifont=Liberation\ Mono\ for\ Powerline:h13 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/README.md -------------------------------------------------------------------------------- /colors/solarized.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/colors/solarized.vim -------------------------------------------------------------------------------- /colors/twilight.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/colors/twilight.vim -------------------------------------------------------------------------------- /colors/vilight.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/colors/vilight.vim -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/vimrc -------------------------------------------------------------------------------- /vundle-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderboltsid/vim-configuration/HEAD/vundle-plugins --------------------------------------------------------------------------------