├── .gitmodules ├── README.md └── vimrc /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "bundle/Vundle.vim"] 2 | path = bundle/Vundle.vim 3 | url = https://github.com/VundleVim/Vundle.vim.git 4 | [submodule "bundle/vim-colors-solarized"] 5 | path = bundle/vim-colors-solarized 6 | url = git://github.com/altercation/vim-colors-solarized.git 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # .vim 2 | 3 | My minimalist vim configuration files 4 | 5 | ``` 6 | cd ~ 7 | git clone git@github.com:fcoury/dotvim.git .vim 8 | ln -s .vim/vimrc .vimrc 9 | 10 | cd ~/.vim 11 | git submodule init 12 | git submodule update 13 | 14 | vim +PluginInstall +qall 15 | ``` 16 | -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- 1 | set nocompatible 2 | filetype off 3 | 4 | " set the runtime path to include Vundle and initialize 5 | set rtp+=~/.vim/bundle/Vundle.vim 6 | call vundle#begin() 7 | 8 | " let Vundle manage Vundle, required 9 | Plugin 'VundleVim/Vundle.vim' 10 | 11 | Bundle 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'} 12 | Bundle 'altercation/vim-colors-solarized' 13 | 14 | " All of your Plugins must be added before the following line 15 | call vundle#end() " required 16 | filetype plugin indent on " required 17 | 18 | syntax enable 19 | filetype plugin indent on 20 | 21 | set number 22 | set showcmd 23 | set showmatch 24 | set wildmenu 25 | set ignorecase 26 | set smartcase 27 | set ruler 28 | set cursorline 29 | 30 | " Solarized config 31 | let g:solarized_termtrans=1 32 | let g:solarized_termcolors=256 33 | set background=dark 34 | colorscheme solarized 35 | 36 | " Powerline Config 37 | set guifont=Inconsolata\ for\ Powerline:h15 38 | let g:Powerline_symbols = 'fancy' 39 | set encoding=utf-8 40 | set t_Co=256 41 | set fillchars+=stl:\ ,stlnc:\ 42 | set term=xterm-256color 43 | set termencoding=utf-8 44 | set laststatus=2 45 | --------------------------------------------------------------------------------