1
0
Fork 0
vdotfiles/vimrc

179 lines
5.3 KiB
VimL
Raw Normal View History

2015-03-05 18:45:48 +02:00
set nocompatible
set background=dark
set backspace=indent,eol,start
set clipboard=exclude:.*
set foldmethod=marker
set history=50
set hlsearch
set ignorecase
set incsearch
set laststatus=2
set nobackup
set noexpandtab
set ruler
set showcmd
set smartcase
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
" scroll before reaching the first / final line
set scrolloff=8
set sidescrolloff=15
set sidescroll=1
2014-11-12 18:33:26 +02:00
" disable bell
set noerrorbells visualbell t_vb=
2015-06-30 00:48:12 +03:00
" 256 colours at almost all times as well as cursor shape changes
" Relies on tmux, fails spectacularly with screen!
if $TERM =~ '^[xterm|rxvt-unicode]'
let &t_Co=256
let &t_SI .= "\<Esc>[6 q"
let &t_EI .= "\<Esc>[4 q"
2015-06-30 00:48:12 +03:00
elseif $TERM =~ '^screen'
let &t_Co=256
2015-06-30 00:48:12 +03:00
let &t_SI = "\<Esc>Ptmux;\<Esc>\e[6 q\<Esc>\\"
let &t_EI = "\<Esc>Ptmux;\<Esc>\e[4 q\<Esc>\\"
endif
2015-06-30 00:48:12 +03:00
if $LANG =~ '[UTF\-8|utf8]$'
2015-06-19 18:33:36 +03:00
set termencoding=utf-8
set encoding=utf-8
endif
" insert shebang in the beginning of the file based on its name extension
2014-11-29 11:02:39 +02:00
autocmd BufNewFile *.zsh 0put =\"#!/usr/bin/env zsh\<nl>\"|$
autocmd BufNewFile *.lua 0put =\"#!/usr/bin/env lua\<nl>\"|$
autocmd BufNewFile *.sh 0put =\"#!/usr/bin/env bash\<nl>\"|$
autocmd BufNewFile *.rb 0put =\"#!/usr/bin/env ruby\<nl>\"|$
autocmd BufNewFile *.py 0put =\"#!/usr/bin/env python3\<nl>\"|$
2014-11-29 11:02:39 +02:00
autocmd BufNewFile *.pl 0put =\"#!/usr/bin/env perl\<nl>\use strict;\<nl>\use warnings;\<nl>\use feature 'say';\<nl>\"|$
2014-11-12 18:33:26 +02:00
" maps
let mapleader = ","
2014-11-12 18:33:26 +02:00
nmap <Space> <C-W>
noremap <F1> <Esc>
2015-06-19 13:23:02 +03:00
"enable cursorline on demand
nnoremap <Leader>c :set cursorline!<CR>
"clear search highlight
nnoremap <Leader>/ :nohls<CR>
"disable auto indent
nnoremap <Leader>a :set autoindent!<CR>
"make wrapped lines navigation easier
nnoremap j gj
nnoremap k gk
vnoremap j gj
vnoremap k gk
"home / end
nnoremap H ^
nnoremap L $
" still have to deal with old vim versions :<
if v:version >= 700
2014-11-17 11:28:43 +02:00
set helplang=en
set modeline
2014-11-17 11:28:43 +02:00
set number
2014-11-17 11:28:43 +02:00
set list
2015-06-19 13:23:02 +03:00
set listchars=tab:\|_,nbsp:x
nnoremap <Leader>n :setlocal number!<CR>
nnoremap <Leader>l :setlocal list!<CR>
2014-11-17 11:28:43 +02:00
" enable case indentation
let g:sh_indent_case_labels=1
" plugins
if filereadable(expand("$HOME/.vim/bundle/Vundle.vim/autoload/vundle.vim"))
filetype off
set noshowmode
set rtp+=~/.vim/bundle/Vundle.vim/
2014-11-17 11:28:43 +02:00
silent! call vundle#begin()
Plugin 'gmarik/Vundle.vim' "plugin manager
" general plugins
Plugin 'Lokaltog/vim-easymotion' "easy motion
Plugin 'Shougo/unite.vim' "fuzzy file open
Plugin 'bling/vim-airline' "stylish info display
Plugin 'bling/vim-bufferline' "stylish buffer display
Plugin 'jeetsukumaran/vim-buffergator' "buffer management
Plugin 'mhinz/vim-signify' "version control system gutter info
Plugin 'scrooloose/nerdtree' "file manager
Plugin 'tpope/vim-fugitive' "git awesomeness
Plugin 'tpope/vim-surround' "quotes replacement made easy
Plugin 'directionalWindowResizer' "resize windows with simple hotkeys
"Plugin 'scrooloose/nerdcommenter' "comment manager
"Plugin 'tpope/vim-tbone' "tmux support
"Plugin 'kien/ctrlp.vim' "some quick file accessing goodness
"Plugin 'vimacs' "it's emacs, in vim insert mode
" IDE like features
Plugin 'jiangmiao/auto-pairs' "automatically place closing bracket / quote
"Plugin 'majutsushi/tagbar' "class / module browser
"Plugin 'msanders/snipmate.vim' "snippets support
"Plugin 'xolox/vim-misc' "deps for lua-ftplugin
"Plugin 'xolox/vim-lua-ftplugin' "lua stuff (very slow)
" colorschemes
Plugin 'morhetz/gruvbox'
Plugin 'MichaelMalick/vim-colors-bluedrake'
Plugin 'romainl/Apprentice'
2015-01-16 08:21:54 +02:00
" syntax highlight plugins
Plugin 'puppetlabs/puppet-syntax-vim'
Plugin 'nagios-syntax'
2014-11-17 11:28:43 +02:00
silent! call vundle#end()
" auto-pairs options
let g:AutoPairsShortcutToggle='<Leader>p'
" easymotion options
let g:EasyMotion_do_mapping=0
let g:EasyMotion_smartcase=1
nmap s <Plug>(easymotion-s)
map <Leader>j <Plug>(easymotion-j)
map <Leader>k <Plug>(easymotion-k)
" airline options
let g:airline_symbols={}
let g:airline_symbols.whitespace='!'
let g:airline_powerline_fonts=1
" buffergator options
map <Leader><Tab> :BuffergatorToggle<CR>
" bufferline options
let g:bufferline_show_bufnr=0
2014-11-12 18:33:26 +02:00
" nerdtree options
2014-11-13 01:49:29 +02:00
let NERDTreeDirArrows=0
map <Leader>, :NERDTreeToggle<CR>
" signify options
let g:signify_vcs_list=[ 'svn', 'git' ]
let g:signify_sign_change='~'
endif
" gvim and colorschemes related stuff
if has("gui_running")
let NERDTreeDirArrows=1
set guioptions=aegimLl
set mouse=a
2014-11-26 19:02:01 +02:00
set guifont=Terminus\ 11
set novb
2015-02-23 10:10:01 +02:00
set guicursor=a:hor1-Cursor/lCursor "underline cursor by default
set guicursor+=i:ver1-Cursor/lCursor "vertical cursor for insert mode
set guicursor+=r:block "block for replace
set guicursor+=a:blinkon0 "and none of them should blink
map <S-Insert> <MiddleMouse>
map! <S-Insert> <MiddleMouse>
endif
let g:gruvbox_italic=0
let g:gruvbox_underline=0
colorscheme gruvbox
else
colorscheme elflord
endif
syntax on
2015-03-10 01:14:57 +02:00
" Enable autoindent
filetype plugin indent on