" Use Vim settings | set nocompatible | filetype indent plugin on | syn on " ================ General Config ==================== set number "Line numbers are good set backspace=indent,eol,start "Allow backspace in insert mode set history=1000 "Store lots of :cmdline history set showcmd "Show incomplete cmds down the bottom set showmode "Show current mode down the bottom set gcr=a:blinkon0 "Disable cursor blink set visualbell "No sounds set autoread "Reload files changed outside vim set cursorline "Show cursorline " This makes vim act like all other editors, buffers can " exist in the background without being in a window. " http://items.sjbach.com/319/configuring-vim-right set hidden "turn on syntax highlighting syntax on "set utf-8 as default encoding set encoding=utf-8 " Change leader to a comma because the backslash is too far away " That means all \x commands turn into ,x " The mapleader has to be set before vundle starts loading all " the plugins. let mapleader="," " ================ Turn Off Swap Files ============== set noswapfile set nobackup set nowb " ================ Persistent Undo ================== " Keep undo history across sessions, by storing in file. " Only works all the time. if has('persistent_undo') silent !mkdir ~/.vim/backups > /dev/null 2>&1 set undodir=~/.vim/backups set undofile endif " ================ Indentation ====================== set autoindent set smartindent set smarttab set shiftwidth=2 set softtabstop=2 set tabstop=2 set expandtab filetype plugin on filetype indent on " Display tabs and trailing spaces visually set list listchars=tab:>-,trail:ยท set nowrap "Don't wrap lines set linebreak "Wrap lines at convenient points " ================ Folds ============================ set foldmethod=syntax set foldnestmax=3 set foldenable set foldlevel=1 " ================ Completion ======================= set wildmode=list:longest set wildmenu "enable ctrl-n and ctrl-p to scroll thru matches set wildignore=*.o,*.obj,*~ "stuff to ignore when tab completing set wildignore+=*vim/backups* set wildignore+=*sass-cache* set wildignore+=*DS_Store* set wildignore+=vendor/rails/** set wildignore+=vendor/cache/** set wildignore+=*.gem set wildignore+=log/** set wildignore+=tmp/** set wildignore+=*.png,*.jpg,*.gif " ================ Path -----======================== if isdirectory('/usr/include/') set path+=/usr/include/ endif " ================ Scrolling ======================== set scrolloff=8 "Start scrolling when we're 8 lines away from margins set sidescrolloff=15 set sidescroll=1 " ================ Addons and their settings ======================== so ~/.vim/addons-settings.vim " addon settings " scnvim let g:scnvim_assets_dir = "~/.local/share/scnvim/" let g:scnvim_scdoc = 1 let g:scnvim_postwin_orientation = 'h' " gopass autocmd BufNewFile,BufRead /dev/shm/gopass* setlocal noswapfile nobackup noundofile shada="" " ultisnips " " Trigger configuration. Do not use if you use " https://github.com/Valloric/YouCompleteMe. let g:UltiSnipsExpandTrigger='' " shortcut to go to next position let g:UltiSnipsJumpForwardTrigger='' " shortcut to go to previous position let g:UltiSnipsJumpBackwardTrigger=''