sync/vim/vimrc
2015-08-22 00:38:19 +00:00

425 lines
14 KiB
VimL

"source /home/stonewareslord/.vim/autoload/plug.vim
if has('conceal')
set conceallevel=2 concealcursor=i
endif
nnoremap <Leader>autoformat! :%s/, /,<CR>:%s/ \/ /\/<CR>:%s/ {/{<CR>:%s/} /}<CR>:%s/ = /=
command! WW %!sudo tee > /dev/null %
"TODO: Fix this
"let g:rbpt_loadcmd_toggle = 1
"autocmd BufRead,BufNewFile * RainbowParenthesesActivate
""autocmd BufRead,BufNewFile * RainbowParenthesesToggle
""autocmd BufRead,BufNewFile * RainbowParenthesesLoadBraces
"autocmd BufRead,BufNewFile * RainbowParenthesesLoadRound
"autocmd BufRead,BufNewFile * RainbowParenthesesLoadSquare
"autocmd BufRead,BufNewFile * RainbowParenthesesLoadChevrons
let g:indent_guides_auto_colors = 0
autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd guibg=darkgrey ctermbg=darkgrey
autocmd VimEnter,Colorscheme * :hi IndentGuidesEven guibg=grey ctermbg=grey
filetype plugin on
set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
"match Error /\s\+$/
"nnoremap s xa
"nnoremap <F5> :UndotreeToggle<CR>
"inoremap <expr><Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
imap <Expr>\ neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : pumvisible() ? "\<C-n>" : "\<TAB>"
smap <Expr>\ neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
nnoremap <Leader><Space> :CtrlPTag<CR>
nnoremap <C-w>\| <C-w>v<C-w>l
nnoremap <C-w>- <C-w>s<C-w>j
nnoremap <C-d> <C-w>q
nnoremap G G$
vnoremap G G$
nnoremap <F5> :GundoToggle<CR>
nnoremap + <C-a>
nnoremap - <C-x>
nnoremap Q <Nop>
nnoremap <Leader><Leader> <C-^>
nnoremap <Leader>a :!git st<CR>:!ls<CR>:!git a
nnoremap <Leader>up :!git pull origin
nnoremap <Leader>st :!git st<CR>
nnoremap <Leader>ci :!git st<CR>:!git ci ""<Left>
nnoremap <Leader>log :!git hist<CR>
nnoremap <Leader>br :!git br<CR>
nnoremap gb :ls<CR>:b
nnoremap <Leader>d :bd
nnoremap <Leader>q :q
nnoremap <Leader>W :%s/\s\+$//<CR>:let @/=''<CR>
nnoremap <Leader>o m`o<Esc>``
nnoremap <Leader>O m`O<Esc>``
nnoremap <Leader>go %m`%x``
nnoremap <Leader>if m"Oif(){<Esc>jo}<Esc>`"v><Esc>k^wa
nnoremap <Leader>else m"kAelse{<Esc>jo}<Esc>`"v><Esc>
nnoremap <Leader>for m"Ofor(){<Esc>jo}<Esc>`"v><Esc>k^wa
nnoremap <Leader>while m"Owhile(){<Esc>jo}<Esc>`"v><Esc>k^wa
nnoremap <Leader>rm m"kddjddkv<<Esc>`"
nnoremap <Leader># O#{{{<Esc>jo#}}}<Esc>kk^a
vnoremap <Leader># <Esc>`<O#{{{<Esc>`>o#}}}<Esc>`<k^a
nnoremap <Leader>{ O//{{{<Esc>jo//}}}<Esc>kk^la
vnoremap <Leader>{ <Esc>`<O//{{{<Esc>`>o//}}}<Esc>`<k^la
vnoremap <Leader>if <Esc>`<Oif(){<Esc>`>o}<Esc>gv><Esc>`<k^wa
vnoremap <Leader>else <Esc>`<kAelse{<Esc>`>o}<Esc>gv><Esc>
vnoremap <Leader>for <Esc>`<Ofor(){<Esc>`>o}<Esc>gv><Esc>`<k^wa
vnoremap <Leader>while <Esc>`<Owhile(){<Esc>`>o}<Esc>gv><Esc>`<k^wa
vnoremap <Leader>rm <Esc>`<<Esc>kdd`>jddgv<<Esc>
vnoremap <silent> * :call VisualSelection('f')<CR>
vnoremap <silent> # :call VisualSelection('b')<CR>
"nnoremap <Space> zo:set hlsearch! hlsearch?<CR>
"nnoremap <Space> :nohlsearch<CR>g<C-g>zo
nnoremap <BS> :nohlsearch<CR>g<C-g>zo
nnoremap U <C-r>
nnoremap K i<CR><Esc>k$
nnoremap <Enter> :up<CR>:silent! call sy#start()<CR>
vnoremap gj j
vnoremap gk k
vnoremap j gj
vnoremap k gk
vnoremap H ^
vnoremap L $h
vnoremap ; :
nnoremap gj j
nnoremap gk k
nnoremap j gj
nnoremap k gk
nnoremap H ^
nnoremap L $
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
map , <Plug>(easymotion-prefix)
nnoremap ! :!
"nnoremap ; m"A;<Esc>`"
nnoremap J Jx
vnoremap < <gv
vnoremap > >gv
nnoremap <F1> <nop>
inoremap <F1> <nop>
vnoremap <F1> <nop>
nnoremap <Leader>** yyPv$r*jyypv$r*
nnoremap <Leader>= yypv$r=
nnoremap <Leader>- yypv$r-
nnoremap <Leader>^ yypv$r^
nnoremap <Leader>" yypv$r"
"inoremap ;; <Esc>m`A;<Esc>``a
"inoremap ;;<Space> <Esc>A;<Esc>o
"nnoremap ;; m"A;<Esc>`"
"nnoremap ;;<Space> A;<Esc>o
inoremap <C-l> <Right>
inoremap <C-h> <Left>
inoremap <C-k> <Up>
inoremap <C-j> <Down>
nnoremap Y y$
nnoremap <Up> <C-w>w
nnoremap <Down> <C-w>W
nnoremap <Left> :bp<CR>
nnoremap <Right> :bn<CR>
nnoremap <C-w>z <C-w>_<C-w>\|
"nnoremap <Leader>bun G?Plug <CR>yyjp$hdi'"+gP0Wl3d/\/<CR>xjyyP$"+gp<Esc>:nohlsearch<CR>:up<CR>:PluginInstall
nnoremap <Leader>bun G?Plug <CR>yyjp$hdi'"+gPo " \| <Esc>"+gp<Esc>:nohlsearch<CR>:up<CR>:PlugInstall
nnoremap <Leader><C-p> :CtrlPFunky<CR>
nnoremap <F2> :set invpaste<CR>
"nnoremap <C-Up> [e
"nnoremap <C-Down> ]e
"vnoremap <C-Up> [egv
"vnoremap <C-Down> ]egv
nnoremap / /\v
vnoremap / /\v
inoremap jk <Esc>A
inoremap kj <Esc>A
set tags=./tags;/
set wildmode=longest,list,full
set gfn=Monospace\ 8
set guioptions=
set guicursor+=n-v-c:blinkon0
set ttimeout
set ttimeoutlen=0
set notimeout
set formatoptions-=r
set formatoptions-=o
set diffopt+=iwhite
set noesckeys
set mouse-=a
set shiftwidth=2
set tabstop=2
set modeline
set softtabstop=2
set expandtab
set history=1000
set hidden
set cursorline
set incsearch
set showmatch
set hlsearch
set scrolloff=3
set scrolljump=5
set autoindent
set backup
set backupdir=~/.vim/backup
set directory=~/.vim/tmp
set undolevels=1000
set history=500
set ttyfast
set fileformat=unix
set encoding=utf-8
set laststatus=2
set foldmethod=indent
set foldnestmax=10
set foldlevel=2
set relativenumber
set number
set ts=2 sw=2 et
set background=dark
set t_Co=256
set gdefault
set nocompatible
"set rtp+=~/.vim/bundle/vundle/
set ignorecase
set textwidth=0
syntax on
let g:AutoPairs = {'(':')', '[':']', '{':'}',"'":"'",'"':'"', '`':'`', '<':'>', '%':'%'}
let g:signify_vcs_list = [ 'git', 'svn' ]
let g:signify_difftool = 'diff'
let g:ctrlp_root_markers = ['.cproot']
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](\.git|\.hg|\.svn|vendor)$',
\ 'file': '\v\.(exe|so|dll)$',
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
\ }
let g:airline_left_sep='▶'
let g:airline_right_sep='◀'
let g:airline#extensions#syntastic#enabled=0
let g:airline#extensions#whitespace#enabled=0
let g:airline#extensions#whitespace#show_message=0
let g:airline#extensions#tmuxline#enabled=1
let g:formatdef_my_custom_php = '"astyle --mode=php -xc -A10 -j -s2 -xG -S -K -N -xn -xl -n"'
let g:formatdef_my_custom_cpp = '"astyle --mode=c -xc -A10 -j -s2 -xG -S -K -N -xn -xl -n"'
let g:formatter_cpp = ['formatdef_my_custom_cpp']
let g:formatter_php = ['formatdef_my_custom_php']
"let g:formatprg_cpp="astyle"
"let g:formatprg_args_expr_cpp=" --mode=c --style=1tbs -xe -k1 -j"
" These flags don't work for some reason
" -xn -xc -xl -S
"let g:airline#extensions#tabline#enabled=1
let g:Powerline_symbols='fancy'
let g:indent_guides_start_level=1
let g:indent_guides_guide_size=1
let g:indent_guides_enable_on_vim_startup=1
"let g:neocomplcache_enable_at_startup=1
"let g:neocomplcache_enable_camel_case_completion=1
"let g:neocomplcache_enable_smart_case=1
"let g:neocomplcache_enable_underbar_completion=1
"let g:neocomplcache_enable_auto_delimiter=1
"let g:neocomplcache_max_list=20
"let g:neocomplcache_force_overwrite_completefunc=1
"let g:neocomplcache_min_syntax_length=2
"let g:neocomplcache_enable_auto_select=1
let g:neocomplete#enable_at_startup = 1
let g:neocomplete#enable_smart_case = 1
let g:neocomplete#sources#syntax#min_keyword_length = 2
let g:php_refactor_command='php /usr/local/bin/refactor.phar'
let g:ctrlp_extensions=['funky']
"inoremap <expr><BS> neocomplcache#smart_close_popup()."\<C-h>"
function! g:UltiSnips_Complete()
call UltiSnips#ExpandSnippet()
if g:ulti_expand_res == 0
if pumvisible()
return "\<C-n>"
else
call UltiSnips#JumpForwards()
if g:ulti_jump_forwards_res == 0
return "\<TAB>"
endif
endif
endif
return ""
endfunction
au BufEnter * exec "inoremap <silent> " . g:UltiSnipsExpandTrigger . " <C-R>=g:UltiSnips_Complete()<cr>"
let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:UltiSnipsListSnippets="<c-e>"
inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
let loaded_matchit=1
let g:UltiSnipsEditSplit="vertical"
filetype off
if has("win32")
call plug#begin('~/vimfiles/plugged')
else
call plug#begin('~/.vim/plugged')
endif
"Plug 'Floobits/floobits-vim'
"Plug 'tsaleh/vim-matchit'
"Plug 'Shougo/neosnippet'
"Plug 'msanders/snipmate.vim'
"Plug 'vim-scripts/YankRing.vim'
Plug 'Chiel92/vim-autoformat'
"Adds autoformat command | https://github.com/Chiel92/vim-autoformat
Plug 'tpope/vim-surround'
"Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround
Plug 'scrooloose/syntastic'
"Syntax checker | https://github.com/scrooloose/syntastic
Plug 'nathanaelkane/vim-indent-guides'
"Indentation guides | https://github.com/nathanaelkane/vim-indent-guides
Plug 'elzr/vim-json'
"JSON highlighting | https://github.com/elzr/vim-json
Plug 'groenewege/vim-less'
"LESS highlighting | https://github.com/groenewege/vim-less
Plug 'pangloss/vim-javascript'
"JS syntax and indentation | https://github.com/pangloss/vim-javascript
"Plug 'Lokaltog/powerline-fonts'
" "Better powerline fonts | https://github.com/Lokaltog/powerline-fonts
Plug 'bling/vim-airline'
"Bottom status bar | https://github.com/bling/vim-airline
Plug 'terryma/vim-multiple-cursors'
"Multicursor functionality like Coda | https://github.com/terryma/vim-multiple-cursors
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
"File browser | https://github.com/scrooloose/nerdtree
"Plug 'altercation/vim-colors-solarized'
" "Theme | https://github.com/altercation/vim-colors-solarized
Plug 'stonewareslord/vim-colors'
"Theme pack | https://github.com/spf13/vim-colors
"Plug 'spf13/PIV'
" "PHP tools | https://github.com/spf13/PIV
"Plug 'vim-scripts/AutoTag'
" "Generates taglist with ctags | https://github.com/vim-scripts/AutoTag
Plug 'Lokaltog/vim-easymotion'
"Move around quickly in a document | https://github.com/Lokaltog/vim-easymotion
Plug 'sjl/gundo.vim'
"Visual undo | https://github.com/sjl/gundo.vim
Plug 'tommcdo/vim-exchange'
"Exchange two selections of text | https://github.com/tommcdo/vim-exchange
Plug 'tpope/vim-repeat'
"Repeat last tpope command with . | https://github.com/tpope/vim-repeat
Plug 'tpope/vim-fugitive'
"Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive
Plug 'kien/ctrlp.vim'
"Fuzzy file search | https://github.com/kien/ctrlp.vim
Plug 'godlygeek/tabular'
"Quickly make tables in vim | https://github.com/godlygeek/tabular
"Plug 'tpope/vim-abolish'
" "Better abbrivation | https://github.com/tpope/vim-abolish
Plug 'godlygeek/csapprox'
"256 color vim in terminal | https://github.com/godlygeek/csapprox
Plug 'sirver/UltiSnips'
"Adds snippets | https://github.com/sirver/UltiSnips
Plug 'honza/vim-snippets'
"More snippets | https://github.com/honza/vim-snippets
Plug 'othree/eregex.vim'
"Real regexes in vim | https://github.com/othree/eregex.vim
"Plug 'vim-scripts/sessionman.vim'
" "Session manager | https://github.com/vim-scripts/sessionman.vim
Plug 'mattn/flappyvird-vim'
"The amazing Flappy Bird game | https://github.com/mattn/flappyvird-vim
"Plug 'morhetz/gruvbox'
" "Colorscheme | https://github.com/morhetz/gruvbox
Plug 'superbrothers/vim-vimperator'
"Vimperator for vim | https://github.com/superbrothers/vim-vimperator
Plug 'Rykka/colorv.vim'
"Color selection in vim | https://github.com/Rykka/colorv.vim
Plug 'mhinz/vim-signify'
"Git information inline | https://github.com/mhinz/vim-signify
Plug 'jamessan/vim-gnupg'
"GPG support | https://github.com/jamessan/vim-gnupg
Plug 'stonewareslord/zeavim.vim'
"Zeal support | https://github.com/stonewareslord/zeavim.vim
Plug 'vim-scripts/DirDiff.vim'
"Directory diff | https://github.com/vim-scripts/DirDiff.vim
Plug 'vim-scripts/DoxygenToolkit.vim'
"Doxygen | https://github.com/vim-scripts/DoxygenToolkit.vim
Plug 'vim-scripts/SyntaxRange'
"Range of syntaxes | https://github.com/vim-scripts/SyntaxRange
Plug 'PotatoesMaster/i3-vim-syntax'
"i3 syntax | https://github.com/PotatoesMaster/i3-vim-syntax
Plug 'https://github.com/fatih/vim-go'
"go syntax | https://github.com/fatih/vim-go
"Plug 'https://github.com/kien/rainbow_parentheses.vim'
" "Colored parenthesis | https://github.com/kien/rainbow_parentheses.vim
Plug 'https://github.com/jiangmiao/auto-pairs'
"Automatic pairs | https://github.com/jiangmiao/auto-pairs
Plug 'https://github.com/Valloric/YouCompleteMe'
" "Autocompletion | https://github.com/Valloric/YouCompleteMe
Plug 'https://github.com/evidens/vim-twig'
"Twig highlighting | https://github.com/evidens/vim-twig
Plug 'https://github.com/joonty/vdebug'
"Php debugging | https://github.com/joonty/vdebug
Plug 'https://github.com/zenbro/mirror.vim'
"Edit files remotely | https://github.com/zenbro/mirror.vim
Plug 'https://github.com/xolox/vim-easytags'
"Vim tags | https://github.com/xolox/vim-easytags
Plug 'https://github.com/xolox/vim-misc'
"Misc (required for easytags) | https://github.com/xolox/vim-misc
Plug 'https://github.com/lervag/vimtex'
" | https://github.com/lervag/vimtex
call plug#end()
filetype plugin indent on
if exists("+undofile")
if isdirectory($HOME . '/.vim/undo')==0
:silent !mkdir -p ~/.vim/undo > /dev/null 2>&1
endif
set undodir=./.vim-undo//
set undodir+=~/.vim/undo//
set undofile
endif
augroup autosave
au!
au BufWritePost .vimrc,vimrc source %
au BufWritePost .Xresources,Xresources silent! !xrdb %
augroup END
augroup vimrcEx
au!
" When editing a file, always jump to the last known cursor position.
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <=line("$") |
\ exe "normal g`\"" |
\ endif
augroup END
if has('gui_running')
set guioptions-=T
else
if &term=='xterm' || &term=='screen'
set t_Co=256
endif
"colorscheme torte
endif
silent! colorscheme fruity
nnoremap <Leader>W :%s/\s\+$//<cr>:let @/=''<cr>
function! Initialize()
if has("win32")
if empty(glob("~/_vim/autoload/plug.vim"))
cd ~
silent !mkdir vimfiles
cd vimfiles
silent !mkdir autoload
silent !mkdir plugin
silent !mkdir backup
silent !mkdir undo
silent !mkdir tmp
cd autoload
silent !powershell -command "& { iwr https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim -OutFile plug.vim }"
silent! so ~/_vimrc
silent! PlugInstall
q
endif
else
if empty(glob("~/.vim/autoload/plug.vim"))
silent !mkdir -p ~/.vim/autoload
silent !mkdir -p ~/.vim/plugin
silent !mkdir -p ~/.vim/backup
silent !mkdir -p ~/.vim/undo
silent !mkdir -p ~/.vim/tmp
silent !curl -fLo ~/.vim/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
silent! so ~/.vimrc
silent! PlugInstall
q
endif
endif
endfunction
if !exists('g:ycm_semantic_triggers')
let g:ycm_semantic_triggers = {}
endif
let g:ycm_semantic_triggers.tex = [
\ 're!\\[A-Za-z]*(ref|cite)[A-Za-z]*([^]]*])?{([^}]*, ?)*'
\ ]
set guifont=Fixed\ Medium\ Semi-Condensed\ 10