Created
September 15, 2015 15:09
-
-
Save bfagundez/ee908f83bce6e406315f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Geekymartian vim rc | |
| " When started as "evim", evim.vim will already have done these settings. | |
| if v:progname =~? "evim" | |
| finish | |
| endif | |
| " Use Vim settings, rather than Vi settings (much better!). | |
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| " allow backspacing over everything in insert mode | |
| set backspace=indent,eol,start | |
| if has("vms") | |
| set nobackup " do not keep a backup file, use versions instead | |
| else | |
| set backup " keep a backup file (restore to previous version) | |
| set undofile " keep an undo file (undo changes after closing) | |
| endif | |
| set history=50 " keep 50 lines of command line history | |
| set ruler " show the cursor position all the time | |
| set showcmd " display incomplete commands | |
| set incsearch " do incremental searching | |
| " Don't use Ex mode, use Q for formatting | |
| map Q gq | |
| " CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo, | |
| " so that you can undo CTRL-U after inserting a line break. | |
| inoremap <C-U> <C-G>u<C-U> | |
| " In many terminal emulators the mouse works just fine, thus enable it. | |
| if has('mouse') | |
| set mouse=a | |
| endif | |
| " Switch syntax highlighting on, when the terminal has colors | |
| " Also switch on highlighting the last used search pattern. | |
| if &t_Co > 2 || has("gui_running") | |
| syntax on | |
| set hlsearch | |
| endif | |
| " Only do this part when compiled with support for autocommands. | |
| if has("autocmd") | |
| " Enable file type detection. | |
| " Use the default filetype settings, so that mail gets 'tw' set to 72, | |
| " 'cindent' is on in C files, etc. | |
| " Also load indent files, to automatically do language-dependent indenting. | |
| filetype plugin indent on | |
| " Put these in an autocmd group, so that we can delete them easily. | |
| augroup vimrcEx | |
| au! | |
| " For all text files set 'textwidth' to 78 characters. | |
| autocmd FileType text setlocal textwidth=78 | |
| " When editing a file, always jump to the last known cursor position. | |
| " Don't do it when the position is invalid or when inside an event handler | |
| " (happens when dropping a file on gvim). | |
| autocmd BufReadPost * | |
| \ if line("'\"") >= 1 && line("'\"") <= line("$") | | |
| \ exe "normal! g`\"" | | |
| \ endif | |
| augroup END | |
| else | |
| set autoindent " always set autoindenting on | |
| endif " has("autocmd") | |
| " Convenient command to see the difference between the current buffer and the | |
| " file it was loaded from, thus the changes you made. | |
| " Only define it when not defined already. | |
| if !exists(":DiffOrig") | |
| command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis | |
| \ | wincmd p | diffthis | |
| endif | |
| if has('langmap') && exists('+langnoremap') | |
| " Prevent that the langmap option applies to characters that result from a | |
| " mapping. If unset (default), this may break plugins (but it's backward | |
| " compatible). | |
| set langnoremap | |
| endif | |
| " nerdtree | |
| autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif | |
| " key mappings | |
| let mapleader=" " | |
| " show nerdtree with space-n | |
| map <Leader>n <plug>NERDTreeTabsToggle<CR> | |
| " open search all inside this folder with ctrl+shift+f | |
| map <C-S-f> :Ag<space> | |
| " overall settings | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| set autoindent " set auto indent | |
| set ts=2 " set indent to 2 spaces | |
| set expandtab " use spaces, not tab characters | |
| set showmatch " show bracket matches | |
| set ignorecase " ignore case in search | |
| set hlsearch " highlight all search matches | |
| set cursorline " highlight current line | |
| set smartcase " pay attention to case when caps are used | |
| set incsearch " show search results as I type | |
| set mouse=a " enable mouse support | |
| set vb " enable visual bell (disable audio bell) | |
| set ruler " show row and column in footer | |
| set laststatus=2 " always show status bar | |
| set list listchars=tab:»·,trail:· " show extra space characters | |
| set nofoldenable " disable code folding | |
| set clipboard=unnamed " use the system clipboard | |
| set runtimepath^=~/.vim/bundle/ctrlp.vim | |
| highlight clear SignColumn | |
| highlight VertSplit ctermbg=236 | |
| highlight ColorColumn ctermbg=237 | |
| highlight LineNr ctermbg=236 ctermfg=240 | |
| highlight CursorLineNr ctermbg=236 ctermfg=240 | |
| highlight CursorLine ctermbg=236 | |
| highlight StatusLineNC ctermbg=238 ctermfg=0 | |
| highlight StatusLine ctermbg=240 ctermfg=12 | |
| highlight IncSearch ctermbg=3 ctermfg=1 | |
| highlight Search ctermbg=1 ctermfg=3 | |
| highlight Visual ctermbg=3 ctermfg=0 | |
| highlight Pmenu ctermbg=240 ctermfg=12 | |
| highlight PmenuSel ctermbg=3 ctermfg=1 | |
| highlight SpellBad ctermbg=0 ctermfg=1 | |
| " highlight the status bar when in insert mode | |
| if version >= 700 | |
| au InsertEnter * hi StatusLine ctermfg=235 ctermbg=2 | |
| au InsertLeave * hi StatusLine ctermbg=240 ctermfg=12 | |
| endif | |
| " highlight trailing spaces in annoying red | |
| highlight ExtraWhitespace ctermbg=1 guibg=red | |
| match ExtraWhitespace /\s\+$/ | |
| autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ | |
| autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/ | |
| autocmd InsertLeave * match ExtraWhitespace /\s\+$/ | |
| autocmd bufwinleave * call clearmatches() | |
| " Vundle plugins go here! | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'EasyMotion' | |
| Plugin 'scrooloose/nerdtree' | |
| Plugin 'scrooloose/syntastic' | |
| Plugin 'jistr/vim-nerdtree-tabs' | |
| Plugin 'terryma/vim-multiple-cursors' | |
| Plugin 'slim-template/vim-slim.git' | |
| Plugin 'mustache/vim-mustache-handlebars' | |
| Plugin 'gorodinskiy/vim-coloresque.git' | |
| Plugin 'airblade/vim-gitgutter' | |
| Plugin 'tpope/vim-fugitive.git' | |
| Plugin 'bling/vim-airline' | |
| Plugin 'bronson/vim-trailing-whitespace' | |
| Plugin 'Yggdroot/indentLine' | |
| Plugin 'rking/ag.vim.git' | |
| Plugin 'scrooloose/nerdcommenter' | |
| " vundle plugins end here! | |
| call vundle#end() | |
| autocmd BufNewFile,BufRead *.slim set ft=slim | |
| " open controlp files as new tabs | |
| let g:ctrlp_prompt_mappings = { | |
| \ 'AcceptSelection("e")': [], | |
| \ 'AcceptSelection("t")': ['<cr>', '<c-m>'], | |
| \ } | |
| " Set handlebars syntax highlighting as html | |
| au BufReadPost *.hbs set syntax=html | |
| " airline | |
| let g:airline_powerline_fonts = 1 | |
| set shiftwidth=2 softtabstop=2 | |
| set number | |
| " syntax general settings | |
| syntax on | |
| syntax enable | |
| " indent guides | |
| let g:indentLine_enabled = 1 | |
| let g:indentLine_color_term = 254 | |
| let g:indentLine_char = '┆' | |
| set colorcolumn=80 | |
| " colorscheme | |
| colorscheme lucius | |
| LuciusWhite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment