mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 19:40:29 +01:00
In the past, there was an issue with detecting color capabilities on different terminal types. It's working now.
769 lines
23 KiB
VimL
769 lines
23 KiB
VimL
"Basic setup for all files {{{
|
||
set nocompatible "VIM over VI
|
||
|
||
" vimplug conf {{{
|
||
|
||
if empty(glob('~/.vim/autoload/plug.vim'))
|
||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||
endif
|
||
|
||
call plug#begin('~/.vim/bundle')
|
||
|
||
Plug 'Valloric/MatchTagAlways'
|
||
Plug 'andymass/vim-matchup'
|
||
Plug 'ayuanx/vim-mark-standalone'
|
||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||
Plug 'dogrover/vim-pentadactyl'
|
||
Plug 'ericpruitt/tmux.vim'
|
||
if has("patch-8.0.1453")
|
||
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
|
||
endif
|
||
Plug 'fs111/pydoc.vim', { 'for': 'python' }
|
||
Plug 'gryf/dragvisuals'
|
||
Plug 'gryf/pep8-vim', { 'for': 'python' }
|
||
Plug 'gryf/pylint-vim', { 'for': 'python' }
|
||
Plug 'gryf/python-syntax', { 'for': 'python' }
|
||
Plug 'gryf/python.vim', { 'for': 'python' }
|
||
Plug 'gryf/pythonhelper', { 'for': 'python' }
|
||
Plug 'gryf/snipmate.vim'
|
||
Plug 'gryf/vim-latex-compiler'
|
||
Plug 'gryf/wombat256grf'
|
||
Plug 'gryf/zoom.vim'
|
||
Plug 'gu-fan/riv.vim', { 'for': 'rst' }
|
||
Plug 'honza/vim-snippets'
|
||
Plug 'kazuyukitanimura/jsbeautify'
|
||
Plug 'kien/ctrlp.vim'
|
||
Plug 'majutsushi/tagbar'
|
||
Plug 'mattn/calendar-vim'
|
||
Plug 'mikeage/occur.vim'
|
||
Plug 'mileszs/ack.vim'
|
||
Plug 'myhere/vim-nodejs-complete', { 'for': 'javascript' }
|
||
Plug 'othree/html5.vim', { 'for': 'html' }
|
||
Plug 'pangloss/vim-javascript', { 'for': 'javascript' }
|
||
Plug 'pcaro90/jpythonfold.vim'
|
||
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||
Plug 'regedarek/ZoomWin'
|
||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||
Plug 'scrooloose/nerdcommenter'
|
||
Plug 'scrooloose/nerdtree'
|
||
Plug 'scrooloose/syntastic'
|
||
Plug 'sjl/gundo.vim'
|
||
Plug 'skammer/vim-css-color'
|
||
Plug 'terryma/vim-multiple-cursors'
|
||
Plug 'tpope/vim-fugitive'
|
||
Plug 'tpope/vim-repeat'
|
||
Plug 'tpope/vim-surround'
|
||
Plug 'vim-scripts/DrawIt'
|
||
Plug 'vim-scripts/JavaScript-Indent', { 'for': 'javascript' }
|
||
Plug 'vim-scripts/LanguageTool'
|
||
Plug 'vim-scripts/Python-2.x-Standard-Library-Reference', { 'for': 'python' }
|
||
Plug 'vim-scripts/ShowMarks'
|
||
Plug 'vim-scripts/indentpython', { 'for': 'python' }
|
||
Plug 'vim-scripts/loremipsum'
|
||
Plug 'vim-scripts/mako.vim', { 'for': 'mako' }
|
||
Plug 'vim-scripts/mako.vim--Torborg', { 'for': 'mako' }
|
||
Plug 'vimwiki/vimwiki'
|
||
Plug 'will133/vim-dirdiff'
|
||
|
||
" Custom plugins: custom plugins per machine {{{
|
||
" if filereadable($MYVIMRC . '.local')
|
||
if filereadable(fnamemodify($MYVIMRC, ':h') . '/plugins.local')
|
||
exec "source " . fnamemodify($MYVIMRC, ':h') . '/plugins.local'
|
||
endif
|
||
|
||
call plug#end()
|
||
" }}}
|
||
" }}}
|
||
|
||
filetype plugin indent on "turn plugins/indent on
|
||
syntax on "Turn syntax highlighting on
|
||
|
||
set backspace=indent,eol,start "Allow backspacing over everything in insert mode
|
||
set background=dark "Hint Vim that I use dark colorscheme
|
||
|
||
set confirm "Ask for confirmation rather then refuse certain commands
|
||
set cursorline "Turn on current line highlight
|
||
set hlsearch "Turn on highlighting search text by default
|
||
set ignorecase "Be case insensitive...
|
||
set smartcase "but be case aware when needed
|
||
set expandtab "I want spaces instead of tabs
|
||
set fileencodings=ucs-bom,utf-8,latin2,default,latin1,default
|
||
set fileformats=unix,dos "Type of <EOL> in written files
|
||
set formatoptions=croqw "Automatic formatting settings
|
||
set hidden "Keep hidden windows
|
||
set history=1000 "Keep 1000 lines of command line history
|
||
set laststatus=2 "Always show statusbar
|
||
set lazyredraw "Don't update screen while executing macros
|
||
try
|
||
set listchars=tab:▸―,trail:· "Strings to use in 'list' mode. list is off by default.
|
||
catch /E474:/
|
||
set listchars=tab:>-,trail:. "Failsafe for Windows and non-unicode envs
|
||
endtry
|
||
set number "show line numbers
|
||
|
||
" Show ruler and set format of statusline
|
||
set ruler
|
||
set statusline=%{exists(':ZoomWin')!=0?GetWinState():'xxx'} " Z for zoomed in window state
|
||
set statusline+=%<%F " filename (fullpath)
|
||
set statusline+=\ %h " indicator for help buffer
|
||
set statusline+=%m " modified flag
|
||
set statusline+=%r " readonly flag
|
||
set statusline+=\ %{exists(':Tagbar')!=0?tagbar#currenttag('%s','','f'):''} " current tag
|
||
set statusline+=\ %{exists(':Tagbar')!=0?tagbar#currenttagtype('(%s)',''):''} " current tag type
|
||
set statusline+=%= " switch to the right
|
||
set statusline+=%(%l,%c%V%) " line, column and virtual column
|
||
set statusline+=\ %3p%% " percentage of the file
|
||
|
||
set scrolloff=5 "Minimal number of screen lines to keep above and below the cursor
|
||
set selection=exclusive "Define the behavior of the selection
|
||
|
||
set sessionoptions-=blank "Don't store empty windows
|
||
set sessionoptions-=globals "Don't store global vars
|
||
set sessionoptions-=localoptions "Don't store local options and mappings
|
||
set sessionoptions-=options "Don't store options and mappings
|
||
set shiftwidth=4 "Number of spaces to use for each step of (auto)indent
|
||
set shortmess=atToOI "Abbreviate some messages
|
||
set showbreak=> "String to put at the start of lines that have been wrapped
|
||
set showcmd "Show (partial) command in status line
|
||
set showmatch "When a bracket is inserted, briefly jump to the matching one
|
||
filetype indent on "Indenting per filetype rather then smartindent.
|
||
set smarttab "Do the smart tab/backspace behaviour
|
||
set softtabstop=4
|
||
|
||
"spell options
|
||
set spelllang=pl,en
|
||
let &spellfile=expand('~/.vim/spell/pl.utf-8.add')
|
||
|
||
set splitbelow "Create new window below current one
|
||
set swapfile "Use swap file
|
||
set t_vb= "Turn beeping off
|
||
set tabstop=4 "Set tab stop to 4
|
||
set updatecount=50 "After typing this many chars the swap file will be written to disk
|
||
set viewoptions-=options "Don't store options in view stored in ~/.vim/view dir
|
||
set viminfo='20,<1000,h,f0 "Configure .viminfo
|
||
set whichwrap+=<,>,[,] "Cursor keys wrap to previous/next line
|
||
set wildchar=<TAB> "Character to start wildcard expansion in the command-line
|
||
set wildmenu "Put command-line completion in an enhanced mode
|
||
set wrapmargin=1 "Number of characters from the right window border where wrapping starts
|
||
|
||
set textwidth=78
|
||
set colorcolumn=+1
|
||
|
||
"backup/writeback/swapfile
|
||
set nobackup
|
||
set nowb
|
||
set noswapfile
|
||
"in case they are needed, store swapfiles in tmp
|
||
"set dir=~/tmp/
|
||
|
||
" store the undo in undodir
|
||
"set undofile
|
||
"set undodir=~/.cache
|
||
|
||
" Strip trailing whitespace option
|
||
let stripTrailingWhitespace = 1
|
||
|
||
" Ignore missing spell files
|
||
let loaded_spellfile_plugin = 1
|
||
|
||
" TOhtml options
|
||
let html_number_lines = 1
|
||
let html_use_css = 1
|
||
let html_ignore_folding = 1
|
||
let html_use_encoding = "utf-8"
|
||
|
||
"Set the browser executable
|
||
let g:browser = 'xdg-open'
|
||
"}}}
|
||
"KEYS: User defined keyboard shortcuts {{{
|
||
|
||
"Cycle through buffers.
|
||
" map <C-p> :bp<CR>
|
||
" map <C-n> :bn<CR>
|
||
|
||
map <F5> :call <SID>Make()<cr>
|
||
|
||
map <F6> :echom <SID>CreateScratch()<CR>
|
||
|
||
"QuickFix jumps
|
||
map <F9> :cp<CR>
|
||
map <F10> :cn<CR>
|
||
map <F11> :lprevious<CR>
|
||
map <F12> :lnext<CR>
|
||
map <S-F9> :QFix<CR>
|
||
map <S-F11> :LWin<CR>
|
||
|
||
"remove trailing whitespaces
|
||
nnoremap <leader>e :call <SID>StripTrailingWhitespaces(1, 'n')<CR>
|
||
vnoremap <silent> <Leader>e :<C-U>call <SID>StripTrailingWhitespaces(1, 'v')<CR>
|
||
|
||
" copy current buffer filename (full path)
|
||
nmap ,cn :silent call <SID>CopyFileName(1)<CR>
|
||
" copy current buffer filename (filename only)
|
||
nmap ,cs :silent call <SID>CopyFileName(0)<CR>
|
||
|
||
"open link under cursor in Firefox
|
||
map ]b :call OpenInWebBrowser()<cr>
|
||
|
||
"remove search highlight and refresh
|
||
nnoremap <silent> <C-l> :nohl<CR>:syn sync fromstart<CR><C-l>
|
||
map <F4> :call <SID>ToggleHex()<cr>
|
||
" }}}
|
||
"FileTypes: specific vim behaviour {{{
|
||
function s:SetPythonSettings() "{{{2
|
||
" Python specific options
|
||
setlocal cinkeys-=0#
|
||
setlocal indentkeys-=0#
|
||
setlocal foldlevel=100
|
||
setlocal foldmethod=indent
|
||
setlocal list
|
||
setlocal smartindent
|
||
setlocal cinwords=if,elif,else,for,while,try,except,finally,def,class,with
|
||
setlocal smarttab
|
||
|
||
setlocal statusline=%<%F " filename (fullpath)
|
||
setlocal statusline+=\ %h " indicator for help buffer
|
||
setlocal statusline+=%m " modified flag
|
||
setlocal statusline+=%r " readonly flag
|
||
setlocal statusline+=\ %{TagInStatusLine()} " current tag and its type
|
||
setlocal statusline+=%= " switch to the right
|
||
setlocal statusline+=%(%l,%c%V%) " line, column and virtual column
|
||
setlocal statusline+=\ %3p%% " percentage of the file
|
||
|
||
set wildignore+=*.pyc
|
||
|
||
inoremap # X<BS>#
|
||
|
||
"set ofu=syntaxcomplete#Complete
|
||
|
||
"autocmd FileType python setlocal omnifunc=pysmell#Complete
|
||
let python_highlight_all=1
|
||
|
||
"Load views for py files
|
||
autocmd BufWinLeave *.py mkview
|
||
autocmd BufWinEnter *.py silent loadview
|
||
|
||
"Something bad happens for python comments - it places 2 spaces instead
|
||
"of 1 after the # sign. Workaround:
|
||
let g:NERDCustomDelimiters = {'python': {'left': '#'}}
|
||
let g:NERDSpaceDelims = 0
|
||
endfunction
|
||
"}}}
|
||
function s:SetJavaScriptSettings() "{{{2
|
||
setlocal foldmethod=syntax
|
||
setlocal list
|
||
|
||
" reformat json struct
|
||
map <leader>] <esc>:%!python -m json.tool<cr>
|
||
endfunction
|
||
"}}}
|
||
function s:SetMarkdownSettings() "{{{2
|
||
setlocal textwidth=80
|
||
setlocal makeprg=md2html.py\ \"%\"\ \"%:p:r.html\"
|
||
setlocal spell
|
||
setlocal smartindent
|
||
setlocal autoindent
|
||
setlocal formatoptions=tcq "set VIms default
|
||
|
||
function! <SID>ShowInBrowser()
|
||
let l:uri = expand("%:p:r") . ".html"
|
||
call system(g:browser . " " . l:uri)
|
||
echohl Statement
|
||
echo "Opened '" . l:uri ."' in " . g:browser
|
||
echohl None
|
||
endfunction
|
||
|
||
if !exists(":ShowInBrowser")
|
||
command ShowInBrowser call s:ShowInBrowser()
|
||
map <S-F5> :ShowInBrowser<CR>
|
||
endif
|
||
|
||
" autocmd BufWritePost *.md :silent make
|
||
endfunction
|
||
"}}}
|
||
function s:SetSnippetSettings() "{{{2
|
||
set nolist
|
||
set tabstop=4
|
||
set autoindent
|
||
"set foldmethod=manual
|
||
set noexpandtab
|
||
set shiftwidth=4
|
||
set noexpandtab
|
||
set list
|
||
endfunction
|
||
"}}}
|
||
function s:SetSqlSettings() "{{{2
|
||
set nolist
|
||
set nosmartindent
|
||
set autoindent
|
||
set foldmethod=manual
|
||
endfunction
|
||
"}}}
|
||
function s:SetVimSettings() "{{{2
|
||
set nolist
|
||
set nosmartindent
|
||
set autoindent
|
||
set foldmethod=manual
|
||
endfunction
|
||
"}}}
|
||
function s:SetYamlSettings() "{{{2
|
||
" Set indents compatible to yaml specification
|
||
setlocal softtabstop=2
|
||
setlocal tabstop=2
|
||
setlocal shiftwidth=2
|
||
setlocal expandtab
|
||
endfunction
|
||
"}}}
|
||
function s:SetRestSettings() "{{{2
|
||
" Some common settings for all reSt files
|
||
setlocal textwidth=79
|
||
let &makeprg = 'rst2html.sh "%" "%:p:r.html"'
|
||
|
||
setlocal spell
|
||
setlocal smartindent
|
||
setlocal autoindent
|
||
setlocal formatoptions=tcq "set VIms default
|
||
syn spell toplevel
|
||
|
||
function! <SID>ShowInBrowser()
|
||
let l:uri = expand("%:p:r") . ".html"
|
||
silent make
|
||
call system(g:browser . " " . l:uri)
|
||
|
||
echohl Statement
|
||
echo "Opened '" . l:uri ."' in " . g:browser
|
||
echohl None
|
||
endfunction
|
||
|
||
if !exists(":ShowInBrowser")
|
||
command ShowInBrowser call s:ShowInBrowser()
|
||
map <S-F5> :ShowInBrowser<CR>
|
||
endif
|
||
|
||
function! WordFrequency() range
|
||
let all = split(join(getline(a:firstline, a:lastline)), '\k\+')
|
||
let frequencies = {}
|
||
for word in all
|
||
let frequencies[word] = get(frequencies, word, 0) + 1
|
||
endfor
|
||
new
|
||
setlocal buftype=nofile bufhidden=hide noswapfile tabstop=4
|
||
for [key,value] in items(frequencies)
|
||
call append('$', value."\t".key)
|
||
endfor
|
||
sort i
|
||
endfunction
|
||
command! -range=% WordFrequency <line1>,<line2>call WordFrequency()
|
||
|
||
function! CreateDict() range
|
||
let all = split(join(getline(a:firstline, a:lastline)),
|
||
\ '[^A-Za-zęóąśłżźćńĘÓĄŚŁŻŹĆŃ]\+')
|
||
let frequencies = {}
|
||
for word in all
|
||
let frequencies[word] = get(frequencies, word, 0) + 1
|
||
endfor
|
||
new
|
||
setlocal buftype=nofile bufhidden=hide noswapfile
|
||
for [key,value] in items(frequencies)
|
||
call append('$', key)
|
||
endfor
|
||
sort i
|
||
endfunction
|
||
command! -range=% CreateDict <line1>,<line2>call CreateDict()
|
||
|
||
endfunction
|
||
"}}}
|
||
function s:SetVimwikiSettings() "{{{2
|
||
map <F5> :Vimwiki2HTML<CR>
|
||
map <S-F5> :Vimwiki2HTMLBrowse<CR>
|
||
map <C-F5> :VimwikiAll2HTML<CR>
|
||
endfunction
|
||
"}}}
|
||
function s:SetGitcommitSettings() "{{{2
|
||
setlocal textwidth=72
|
||
setlocal spell
|
||
endfunction
|
||
"}}}
|
||
|
||
"remove all trailing whitespace for specified files before write
|
||
autocmd BufWritePre * :call <SID>StripTrailingWhitespaces(0, 'n')
|
||
|
||
"set correct filetype for tmux
|
||
autocmd BufRead *.tmux.conf set filetype=tmux
|
||
autocmd BufRead *.mako set filetype=mako
|
||
autocmd BufRead *.ass, *asm set filetype=kickass
|
||
|
||
" make the current line highlighted only on current window
|
||
autocmd WinEnter * setlocal cursorline
|
||
autocmd WinLeave * setlocal nocursorline
|
||
|
||
autocmd FileType python call <SID>SetPythonSettings()
|
||
autocmd FileType json call <SID>SetJavaScriptSettings()
|
||
autocmd FileType javascript call <SID>SetJavaScriptSettings()
|
||
autocmd FileType rst call <SID>SetRestSettings()
|
||
autocmd FileType yaml call <SID>SetYamlSettings()
|
||
autocmd FileType snippet call <SID>SetSnippetSettings()
|
||
autocmd FileType sql call <SID>SetSqlSettings()
|
||
autocmd FileType markdown call <SID>SetMarkdownSettings()
|
||
autocmd FileType vim call <SID>SetVimSettings()
|
||
autocmd FileType vimwiki call <SID>SetVimwikiSettings()
|
||
autocmd FileType gitcommit call <SID>SetGitcommitSettings()
|
||
|
||
" }}}
|
||
"TERMINAL: options for terminal emulators {{{
|
||
if $TERM == 'rxvt-unicode-256color' || $TERM == 'xterm'
|
||
"repair urxvt ctrl+pgup/down behaviour
|
||
map [5^ <C-PageUp>
|
||
map [6^ <C-PageDown>
|
||
elseif $TERM == 'screen' || $TERM == 'screen-256color'
|
||
set t_kN=[6;*~
|
||
set t_kP=[5;*~
|
||
endif
|
||
if $TERM == 'linux' && !has("gui_running")
|
||
"For term like linux terminal keep interface simple
|
||
set nolist
|
||
set nocursorline
|
||
set nonumber
|
||
endif
|
||
"}}}
|
||
"PLUGINS: {{{
|
||
"Ack {{{2
|
||
if executable('ag')
|
||
let g:ackprg = 'ag --vimgrep'
|
||
endif
|
||
"}}}
|
||
"KickAssembler {{{2
|
||
let g:kickass_path = '/opt/KickAssembler/KickAss.jar'
|
||
"}}}
|
||
" Calendar {{{2
|
||
let g:calendar_monday = 1
|
||
let g:calendar_weeknm = 1
|
||
"}}}
|
||
"CtrlP {{{2
|
||
let g:ctrlp_custom_ignore = {
|
||
\ 'dir': '\.git$\|\.hg$\|\.svn$',
|
||
\ 'file': '\.pyo$\|\.pyc$\|\.pyd$',
|
||
\ }
|
||
let g:ctrlp_map = '<C-F>'
|
||
" The Silver Searcher
|
||
if executable('ag')
|
||
" Use ag over grep
|
||
set grepprg=ag\ --nogroup\ --nocolor
|
||
|
||
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
|
||
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
|
||
|
||
" ag is fast enough that CtrlP doesn't need to cache
|
||
let g:ctrlp_use_caching = 0
|
||
endif
|
||
map <C-B> :CtrlPBuffer<CR>
|
||
"}}}
|
||
" DirDiff {{{2
|
||
let g:DirDiffExcludes = ".svn,CVS,*.class,*.exe,.*.swp,*.pyc,*.pyo"
|
||
" Make use of cursor keys
|
||
nmap <M-Up> [c
|
||
nmap <M-Down> ]c
|
||
nmap <C-Up> \dk
|
||
nmap <C-Down> \dj
|
||
" }}}
|
||
"Dragvisuals {{{2
|
||
vmap <expr> <C-LEFT> DVB_Drag('left')
|
||
vmap <expr> <C-RIGHT> DVB_Drag('right')
|
||
vmap <expr> <C-DOWN> DVB_Drag('down')
|
||
vmap <expr> <C-UP> DVB_Drag('up')
|
||
vmap <expr> D DVB_Duplicate()
|
||
let g:DVB_TrimWS = 1
|
||
"}}}
|
||
"Gundo {{{2
|
||
map <Leader>u :GundoToggle<cr>
|
||
let g:gundo_prefer_python3 = 1
|
||
"}}}
|
||
"Jedi {{{
|
||
" automatically popup is annoying
|
||
let g:jedi#popup_on_dot = 0
|
||
" also this one is pretty annoying
|
||
let g:jedi#show_call_signatures = "0"
|
||
"let g:languagetool_lang=pl
|
||
"}}}
|
||
"jsbeautify {{{2
|
||
nnoremap <silent> <leader>ff :call g:Jsbeautify()<cr>:retab!<cr>
|
||
"}}}
|
||
"LanguageTool {{{
|
||
let g:languagetool_jar='/opt/LanguageTool/languagetool-commandline.jar'
|
||
"let g:languagetool_lang=pl
|
||
"}}}
|
||
"mark {{{2
|
||
" addidtional colors --
|
||
function s:CustomHighlightings()
|
||
highlight def MarkWord7 ctermbg=White ctermfg=Black guibg=#E8E8E8 guifg=Black
|
||
highlight def MarkWord8 ctermbg=LightGray ctermfg=Black guibg=#C0C0C0 guifg=Black
|
||
highlight def MarkWord9 ctermbg=DarkYellow ctermfg=Black guibg=#FFC299 guifg=Black
|
||
highlight def MarkWord10 ctermbg=DarkGreen ctermfg=Black guibg=#6E9954 guifg=Black
|
||
endfunction
|
||
autocmd ColorScheme * call <SID>CustomHighlightings()
|
||
|
||
"}}}
|
||
"NERDCommenter {{{2
|
||
let g:NERDSpaceDelims=1
|
||
"}}}
|
||
"NERDtree {{{
|
||
map <F2> :NERDTreeToggle<cr>
|
||
"}}}
|
||
" Occur {{{
|
||
nnoremap <silent> <unique> <Leader>oc :Occur<CR>
|
||
nnoremap <silent> <unique> <Leader>om :Moccur<CR>
|
||
nnoremap <silent> <unique> <Leader>8 *<C-o>:Moccur<CR>
|
||
" }}}
|
||
"Pydoc {{{2
|
||
let g:pydoc_cmd = "/usr/bin/pydoc"
|
||
"}}}
|
||
"Pythonhelper {{{2
|
||
let g:pythonhelper_updatetime = 1000
|
||
"}}}
|
||
"Python syntax {{{2
|
||
let g:python_highlight_all=1
|
||
let g:python_version_2=1
|
||
"}}}
|
||
"Riv {{{
|
||
" Don't fold the file; it's annoying
|
||
let g:riv_fold_level = -1
|
||
" formatting tables, doesn't work so good with complex grid tables
|
||
let g:riv_auto_format_table = 0
|
||
"}}}
|
||
" Rubber / vim-latex-compiler {{{2
|
||
let g:rubber_make_on_save = 0
|
||
" }}}
|
||
"ShowMarks {{{2
|
||
let g:showmarks_ignore_type = "hqprm"
|
||
let g:showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||
"}}}
|
||
"Syntastic {{{2
|
||
"don't use pylint to check since it's slow on big modules
|
||
let g:syntastic_python_checkers = ["python", "flake8"]
|
||
"}}}
|
||
"Tagbar {{{2
|
||
nmap <Leader>t :Tagbar<CR>
|
||
let g:tagbar_compact = 1
|
||
" Note: see statusline settings for status bar tag conf
|
||
"}}}
|
||
"VimWIKI {{{2
|
||
let g:vimwiki_list = [{'path': '~/vimwiki/',
|
||
\ 'template_path': '~/vimwiki/',
|
||
\ 'template_default': 'default',
|
||
\ 'template_ext': '.tpl'}]
|
||
"redefine tab key for vimwiki
|
||
map <Leader>wn <Plug>VimwikiNextWord
|
||
map <Leader>wp <Plug>VimwikiPrevWord
|
||
" }}}
|
||
"Zoom {{{2
|
||
"Additinal mappings for keypadless keyboards
|
||
nmap <C-S-F12> :ZoomIn<CR>
|
||
nmap <C-S-F11> :ZoomOut<CR>
|
||
nmap <C-S-F10> :ZoomReset<CR>
|
||
" }}}
|
||
" ZoomWin {{{2
|
||
|
||
map <C-W>z :ZoomWin<CR>
|
||
let g:win_state=''
|
||
fun! ZWStatline(state)
|
||
if a:state
|
||
let g:win_state='[Z] '
|
||
else
|
||
let g:win_state=''
|
||
endif
|
||
endfun
|
||
if !exists("g:ZoomWin_funcref")
|
||
let g:ZoomWin_funcref = function("ZWStatline")
|
||
endif
|
||
|
||
function GetWinState()
|
||
return g:win_state
|
||
endfunction
|
||
|
||
" }}}
|
||
"}}}
|
||
" FUNCTIONS: usefull functions for all of the files {{{
|
||
|
||
" Simple wrapper for :make command
|
||
function <SID>Make()
|
||
echohl Statement
|
||
echo "Running make (ctrl-c to cancel) ..."
|
||
echohl Normal
|
||
silent make
|
||
if getqflist() != []
|
||
copen
|
||
endif
|
||
redraw
|
||
endfunction
|
||
|
||
" Remove trailing whitespace
|
||
function <SID>StripTrailingWhitespaces(force, mode) range
|
||
if a:force != 1 && g:stripTrailingWhitespace == 0
|
||
return
|
||
endif
|
||
|
||
if a:force == 1 || &ft =~ 'python\|rst\|wiki\|javascript\|css\|html\|xml'
|
||
" Preparation: save last search, and cursor position.
|
||
let _s=@/
|
||
let l = line(".")
|
||
let c = col(".")
|
||
" Do the business:
|
||
if a:mode == 'v'
|
||
'<,'>s/\s\+$//e
|
||
else
|
||
%s/\s\+$//e
|
||
endif
|
||
" Clean up: restore previous search history, and cursor position
|
||
let @/=_s
|
||
call cursor(l, c)
|
||
endif
|
||
endfunction
|
||
command -bang StripTrailingWhitespaces call <SID>StripTrailingWhitespaces(<bang>0, 'n')
|
||
|
||
function <SID>CopyFileName(full)
|
||
if a:full
|
||
let l:full_fn = expand("%:p")
|
||
else
|
||
let l:full_fn = expand("%")
|
||
endif
|
||
|
||
" Convert slashes to backslashes for Windows.
|
||
if has('win32')
|
||
let @*=substitute(l:full_fn, "/", "\\", "g")
|
||
else
|
||
let @*=l:full_fn
|
||
endif
|
||
echo l:full_fn + " copied to clipboard"
|
||
endfunction
|
||
|
||
" Toggle QuickFix buffer
|
||
command -bang -nargs=? QFix call QFixToggle(<bang>0)
|
||
function QFixToggle(forced)
|
||
if exists("g:qfix_win") && a:forced == 0
|
||
cclose
|
||
unlet g:qfix_win
|
||
else
|
||
copen 10
|
||
let g:qfix_win = bufnr("$")
|
||
endif
|
||
endfunction
|
||
|
||
" Toggle location buffer
|
||
command -bang -nargs=? LWin call LocationWindowToggle(<bang>0)
|
||
function LocationWindowToggle(forced)
|
||
if exists("g:loc_win") && a:forced == 0
|
||
lclose
|
||
unlet g:loc_win
|
||
else
|
||
lopen 10
|
||
let g:loc_win = bufnr("$")
|
||
endif
|
||
endfunction
|
||
|
||
" OpenInWebBrowser
|
||
" try to open url in selected web browser
|
||
function OpenInWebBrowser()
|
||
let l:line = getline(".")
|
||
let l:cursor_position = getpos(".")[2]
|
||
let l:url = ""
|
||
let l:pattern = '\c\%(http[s]\?\|ftp\|file\)\:\/\/[^$ ]\+'
|
||
|
||
for i in split(l:line)
|
||
if match(i, l:pattern) == 0
|
||
"check position in line against cursor_position
|
||
for x in range(match(l:line, i), match(l:line, i) + len(i))
|
||
if l:cursor_position == x
|
||
let l:url = i
|
||
break
|
||
endif
|
||
endfor
|
||
endif
|
||
endfor
|
||
|
||
if len(l:url) > 0
|
||
call system(g:browser . " " . l:url)
|
||
echohl Statement
|
||
echo "Opened '" . l:url ."' in " . g:browser
|
||
else
|
||
echohl WarningMsg
|
||
echo "Not an URL under cursor."
|
||
endif
|
||
echohl None
|
||
endfunction
|
||
|
||
" helper function to toggle hex mode
|
||
function <SID>ToggleHex()
|
||
" hex mode should be considered a read-only operation
|
||
" save values for modified and read-only for restoration later,
|
||
" and clear the read-only flag for now
|
||
let l:modified=&mod
|
||
let l:oldreadonly=&readonly
|
||
let &readonly=0
|
||
let l:oldmodifiable=&modifiable
|
||
let &modifiable=1
|
||
if !exists("b:editHex") || !b:editHex
|
||
" save old options
|
||
let b:oldft=&ft
|
||
let b:oldbin=&bin
|
||
" set new options
|
||
setlocal binary " make sure it overrides any textwidth, etc.
|
||
let &ft="xxd"
|
||
" set status
|
||
let b:editHex=1
|
||
" switch to hex editor
|
||
%!xxd
|
||
else
|
||
" restore old options
|
||
let &ft=b:oldft
|
||
if !b:oldbin
|
||
setlocal nobinary
|
||
endif
|
||
" set status
|
||
let b:editHex=0
|
||
" return to normal editing
|
||
%!xxd -r
|
||
endif
|
||
" restore values for modified and read only state
|
||
let &mod=l:modified
|
||
let &readonly=l:oldreadonly
|
||
let &modifiable=l:oldmodifiable
|
||
endfunction
|
||
|
||
function <SID>CreateScratch()
|
||
new|setl bt=nofile bh=wipe nobl
|
||
return ""
|
||
endfunction
|
||
|
||
"write files as a root using sudo
|
||
command W w !sudo tee "%" > /dev/null
|
||
"}}}
|
||
" GUI: detect graphics mode, set colorscheme {{{
|
||
if has('gui_running')
|
||
set guifont=DejaVuSansMono\ Nerd\ Font\ Mono\ 12
|
||
set mouse=a "Enable mouse support
|
||
" No toolbar, menu, scrollbars, draw simple text tabs. This would keep
|
||
" window in one place, and also this will conserve space. Tabs are huge
|
||
" under GTK.
|
||
set guioptions=agit
|
||
"add menuitem OpenInWebBrowser
|
||
nmenu 666 PopUp.&Open\ in\ browser :call OpenInWebBrowser()<cr>
|
||
"Turn off annoying beep
|
||
au GUIEnter * set vb t_vb=
|
||
endif
|
||
|
||
silent! colorscheme wombat256grf
|
||
|
||
if $TERM == 'linux' && !has('gui_running')
|
||
" fallback to basic 8-color colorscheme
|
||
colorscheme pablo
|
||
endif
|
||
"}}}
|
||
" Custom: custom config per machine {{{
|
||
if filereadable($MYVIMRC . '.local')
|
||
exec "source " . $MYVIMRC . '.local'
|
||
endif
|
||
"}}}
|
||
" vim:ts=4:sw=4:wrap:fdm=marker:
|