2017-10-24 09:46:48 +00:00
|
|
|
"!!! makes use of marker '
|
2017-10-18 16:50:13 +00:00
|
|
|
|
2017-10-24 09:39:53 +00:00
|
|
|
" Sessions
|
|
|
|
set sessionoptions=blank,buffers,curdir,folds,help,options,tabpages
|
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" some conditional configs
|
|
|
|
if has('mouse')
|
|
|
|
set mouse=a
|
|
|
|
endif
|
|
|
|
if &t_Co > 2 || has("gui_running")
|
|
|
|
syntax on
|
|
|
|
set hlsearch "Highlight search results
|
2017-08-19 06:48:08 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
set nocompatible
|
2017-10-18 16:50:13 +00:00
|
|
|
""""""""""""""""
|
2017-10-24 09:46:48 +00:00
|
|
|
set history=50 " keep 50 lines of command line history
|
|
|
|
set nonumber
|
2017-10-18 16:50:13 +00:00
|
|
|
set relativenumber
|
|
|
|
set langmenu=en_UK
|
|
|
|
let $LANG = 'en_UK'
|
|
|
|
source $VIMRUNTIME/delmenu.vim
|
|
|
|
source $VIMRUNTIME/menu.vim
|
|
|
|
set guioptions-=r
|
|
|
|
set guioptions-=R
|
|
|
|
set guioptions-=l
|
|
|
|
set guioptions-=L
|
|
|
|
set gfn=Courier_New:h12:cANSI
|
|
|
|
try
|
2017-10-24 09:46:48 +00:00
|
|
|
set undodir=$HOME/.vimundo
|
2017-10-18 16:50:13 +00:00
|
|
|
set undofile
|
|
|
|
catch
|
2017-10-24 09:46:48 +00:00
|
|
|
echom "Undofile doesn't work :("
|
2017-10-18 16:50:13 +00:00
|
|
|
endtry
|
|
|
|
filetype plugin on
|
|
|
|
filetype indent on
|
|
|
|
set ruler
|
|
|
|
set backspace=eol,start,indent
|
|
|
|
set path+=** " Enable fuzzy search " STAAAAAARS
|
|
|
|
set wildmenu "Menu for tab completion
|
|
|
|
set enc=utf8
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" Search Stuff
|
|
|
|
set ignorecase
|
|
|
|
set smartcase
|
|
|
|
noh
|
|
|
|
set incsearch
|
|
|
|
set lazyredraw
|
|
|
|
set magic "Who doesn't want to be a vim-wizard?
|
|
|
|
set showmatch
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" Backup and file stuff
|
|
|
|
set nobackup
|
|
|
|
set nowb
|
|
|
|
set noswapfile
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" Indentation, etc.
|
|
|
|
set tabstop=2
|
|
|
|
set softtabstop=2
|
|
|
|
set shiftwidth=2
|
|
|
|
set noexpandtab
|
|
|
|
set smarttab
|
|
|
|
set autoindent
|
|
|
|
set smartindent
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
set smarttab
|
|
|
|
set shiftwidth=2
|
|
|
|
set gdefault
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
set wrap
|
2017-10-23 12:28:12 +00:00
|
|
|
au BufEnter,BufRead * set linebreak
|
2017-10-18 16:50:13 +00:00
|
|
|
set breakat=\ .,{
|
|
|
|
set display+=lastline
|
|
|
|
set showbreak=+->\
|
|
|
|
set listchars=eol:¶,tab:»\ ,trail:.
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
set modeline " Allows setting vim options in other files
|
|
|
|
set statusline=(%n)\ %f\ [%M%R]\ [%Y]%=%l,%c%V\ %4.P
|
|
|
|
set laststatus=2
|
|
|
|
set cmdheight=1
|
2017-10-20 07:45:49 +00:00
|
|
|
set timeoutlen=1200
|
2017-10-18 16:50:13 +00:00
|
|
|
|
|
|
|
" Clipboard and Copy/Paste things
|
|
|
|
set clipboard=unnamed " Allow copying to and from OS clipboard
|
|
|
|
noremap <leader>d "_d
|
|
|
|
noremap <leader>d "_d
|
|
|
|
noremap x "_x
|
|
|
|
noremap <leader>x x
|
|
|
|
|
2017-10-26 10:39:08 +00:00
|
|
|
" === GENERAL COMMANDS ===
|
|
|
|
command! L lopen | set number | set norelativenumber
|
|
|
|
|
2017-10-26 11:24:02 +00:00
|
|
|
command! Fixme cex MatchingLines("\\cfixme.*")
|
|
|
|
command! Todo cex MatchingLines("\\ctodo.*")
|
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" === GENERAL KEY MAPPINGS ===
|
|
|
|
let mapleader = "\\"
|
2017-10-26 10:39:08 +00:00
|
|
|
nnoremap <S-l> :L<cr>
|
2017-10-18 16:50:13 +00:00
|
|
|
noremap <space> :
|
|
|
|
noremap <C-space> @:
|
|
|
|
noremap Q @q
|
|
|
|
nnoremap <S-space> gQ
|
|
|
|
noremap <C-s> :w<CR>
|
|
|
|
noremap <C-x> :hide<CR>
|
2017-10-23 12:28:12 +00:00
|
|
|
noremap <C-q> :bdelete<CR>
|
2017-10-18 16:50:13 +00:00
|
|
|
nnoremap <C-n> :bnext<CR>
|
|
|
|
nnoremap <C-p> :bprevious<CR>
|
2017-10-26 09:10:43 +00:00
|
|
|
nnoremap <leader>n :lnext<cr>
|
|
|
|
nnoremap <leader>p :lNext<cr>
|
2017-10-26 11:24:02 +00:00
|
|
|
nnoremap <leader><leader>n :cnext<cr>
|
|
|
|
nnoremap <leader><leader>p :cNext<cr>
|
2017-10-26 09:10:43 +00:00
|
|
|
nnoremap <C-i> Bi <esc>i
|
|
|
|
nnoremap <C-a> Ea <esc>a
|
|
|
|
" This one does nothing, but I'm adding it to remember not to remap the tab key
|
|
|
|
nnoremap <tab> <C-S-I>
|
|
|
|
nnoremap <S-tab> <C-S-O>
|
2017-10-18 16:50:13 +00:00
|
|
|
noremap <F1> :setl number!<CR>
|
|
|
|
noremap <F2> :setl relativenumber!<CR>
|
|
|
|
noremap <F3> :setl autowriteall!<CR>:setl autowriteall?<CR>
|
|
|
|
noremap <F4> :setl list!<CR>
|
|
|
|
nnoremap <C-e> ge
|
|
|
|
nnoremap <C-E> gE
|
|
|
|
com! Setwd :cd %:p:h
|
|
|
|
com! Removetrailingspaces :%s/\v(\\@<!\s)+$//ge
|
|
|
|
nnoremap <leader>t :Removetrailingspaces<CR>
|
|
|
|
nnoremap <C-d> :copy .<CR>
|
|
|
|
nnoremap dx 0"_d$
|
|
|
|
nnoremap dcx 0d$
|
2017-10-20 07:45:49 +00:00
|
|
|
nnoremap <leader>: :let @* = @:<CR>
|
2017-10-24 07:40:54 +00:00
|
|
|
|
|
|
|
" Tabs vs. Spaces
|
|
|
|
nnoremap <C-tab> :setl expandtab!<CR>:set expandtab?<CR>
|
2017-10-26 11:24:02 +00:00
|
|
|
" TODO: custom function to retab only indentation
|
2017-10-19 06:41:26 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" Empty Lines
|
2017-10-20 07:45:49 +00:00
|
|
|
nnoremap <ENTER> :call <SID>Enter(0)<CR>
|
|
|
|
nnoremap <S-ENTER> :call <SID>Enter(1)<CR>
|
|
|
|
function! s:Enter(shift)
|
|
|
|
if !a:shift
|
|
|
|
if col(".")-1
|
2017-10-24 07:40:54 +00:00
|
|
|
exe "normal o\<esc>0\"_d$"
|
2017-10-20 07:45:49 +00:00
|
|
|
else
|
2017-10-24 07:40:54 +00:00
|
|
|
exe "normal O\<esc>0\"_d$j"
|
2017-10-20 07:45:49 +00:00
|
|
|
end
|
|
|
|
else
|
2017-10-24 07:40:54 +00:00
|
|
|
exe "normal O\<esc>0\"_d$"
|
2017-10-20 07:45:49 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
2017-10-18 16:50:13 +00:00
|
|
|
|
|
|
|
" Markdown Stuff
|
|
|
|
vnoremap * <C-c>`>a*<C-c>`<i*<C-c>
|
|
|
|
vnoremap _ <C-c>`>a__<C-c>`<i__<C-c>
|
|
|
|
|
|
|
|
" === GENERAL ABBREVIATIONS ===
|
2017-10-18 17:15:31 +00:00
|
|
|
cabbr rcpath fnamemodify($MYVIMRC, ":p:h")
|
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
cabbr <expr> %% expand('%:p:h')
|
2017-10-18 17:15:31 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
digraph <3 9829
|
|
|
|
digraph ue 252
|
|
|
|
digraph UE 220
|
|
|
|
digraph ae 228
|
|
|
|
digraph AE 196
|
|
|
|
digraph oe 246
|
|
|
|
digraph OE 214
|
|
|
|
digraph ss 223
|
|
|
|
|
2017-10-26 09:10:43 +00:00
|
|
|
" === GENERAL UTILITIES ===
|
2017-10-26 10:39:08 +00:00
|
|
|
function! MatchingLines(pattern)
|
2017-10-26 09:10:43 +00:00
|
|
|
let list = []
|
|
|
|
let pattern = a:pattern
|
|
|
|
exec "g/".pattern."/ call add(list, expand('%').'('.line('.').') : '.matchstr(getline('.'), '".pattern."'))"
|
|
|
|
return list
|
|
|
|
endfunc
|
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" === GENERAL AUTOCOMMANDS ===
|
|
|
|
|
|
|
|
nnoremap <leader>h :call <SID>toggleWUC()<CR>
|
|
|
|
function! s:updateWUC()
|
|
|
|
if exists("b:hlwuc")
|
|
|
|
if b:hlwuc > 1
|
|
|
|
call matchdelete(b:hlwuc)
|
|
|
|
end
|
|
|
|
end
|
2017-10-20 10:39:20 +00:00
|
|
|
if exists("b:word_hl")
|
|
|
|
let hl = b:word_hl
|
|
|
|
else
|
|
|
|
let hl = "Underlined"
|
|
|
|
endif
|
2017-10-20 07:54:52 +00:00
|
|
|
let str = "\\<".escape(expand("<cword>"), "\\")."\\>"
|
2017-10-20 10:39:20 +00:00
|
|
|
let b:hlwuc = matchadd(hl, str)
|
2017-10-20 07:57:34 +00:00
|
|
|
"echom str
|
2017-10-18 16:50:13 +00:00
|
|
|
endfunc
|
|
|
|
function! s:toggleWUC()
|
|
|
|
augroup hlwuc
|
|
|
|
if exists("b:hlwuc")
|
|
|
|
autocmd!
|
|
|
|
if b:hlwuc > 1
|
|
|
|
call matchdelete(b:hlwuc)
|
|
|
|
end
|
|
|
|
unlet b:hlwuc
|
|
|
|
else
|
|
|
|
call <SID>updateWUC()
|
|
|
|
autocmd CursorMoved <buffer> call <SID>updateWUC()
|
|
|
|
autocmd CursorMovedI <buffer> call <SID>updateWUC()
|
|
|
|
endif
|
|
|
|
augroup END
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! Autosave()
|
|
|
|
if &autowriteall==1
|
|
|
|
silent w
|
|
|
|
echo "Lost focus, buffer saved."
|
2017-10-18 16:58:06 +00:00
|
|
|
redraw
|
2017-10-18 16:50:13 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
au FocusLost * call Autosave()
|
|
|
|
au WinLeave * call Autosave()
|
|
|
|
|
|
|
|
vnoremap <leader>g :<C-u>call <SID>GrepOperator(visualmode())<CR>
|
|
|
|
nnoremap <leader>g :set operatorfunc=<SID>GrepOperator<CR>g@
|
|
|
|
function! s:GrepOperator(type)
|
|
|
|
let reg1 = @@
|
|
|
|
if a:type==# 'v'
|
|
|
|
execute "normal! `<v`>y"
|
|
|
|
elseif a:type==# 'char'
|
|
|
|
execute "normal! `[y`]"
|
|
|
|
else
|
|
|
|
return
|
|
|
|
end
|
|
|
|
echom "vimgrep! /\\M".escape(@@, "\\")."/ *"
|
|
|
|
silent! execute "vimgrep /\\M".escape(@@, "\\")."/j *"
|
|
|
|
let @@ = reg1
|
|
|
|
copen
|
|
|
|
set nowrap
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Window Height stuff
|
2017-10-26 06:49:54 +00:00
|
|
|
command! Equal call Equal()
|
|
|
|
function! Equal()
|
|
|
|
set winminheight=0
|
|
|
|
set winheight=1
|
|
|
|
set equalalways!
|
|
|
|
set equalalways!
|
|
|
|
endfunc
|
2017-10-18 16:50:13 +00:00
|
|
|
function! SetWinMinHeight(num)
|
|
|
|
execute "set winminheight=".0
|
2017-10-26 06:49:54 +00:00
|
|
|
if a:num>=0
|
|
|
|
execute "set winheight=".(a:num+1)
|
|
|
|
execute "set winminheight=".a:num
|
|
|
|
endif
|
2017-10-18 16:50:13 +00:00
|
|
|
execute "set winheight=".9999
|
|
|
|
endfunc
|
|
|
|
call SetWinMinHeight(2)
|
|
|
|
function! AddWinMinHeight(num)
|
|
|
|
let a:new = &winminheight + a:num
|
|
|
|
call SetWinMinHeight(a:new)
|
|
|
|
set winminheight?
|
|
|
|
endfunc
|
|
|
|
nnoremap <leader>= :call AddWinMinHeight(1)<cr>
|
|
|
|
nnoremap <leader>- :call AddWinMinHeight(-1)<cr>
|
2017-10-26 09:10:43 +00:00
|
|
|
nnoremap <leader>0 :Equal<cr>
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-26 11:08:27 +00:00
|
|
|
" Window Width Stuff
|
2017-10-26 14:32:00 +00:00
|
|
|
command! EqualW silent! call EqualW()
|
2017-10-26 11:08:27 +00:00
|
|
|
function! EqualW()
|
|
|
|
set winminwidth=0
|
|
|
|
set winwidth=1
|
|
|
|
set equalalways!
|
|
|
|
set equalalways!
|
|
|
|
endfunc
|
|
|
|
function! SetWinMinWidth(num)
|
|
|
|
execute "set winminwidth=".0
|
|
|
|
if a:num>=0
|
|
|
|
execute "set winwidth=".(a:num+1)
|
|
|
|
execute "set winminwidth=".a:num
|
|
|
|
endif
|
|
|
|
execute "set winwidth=".9999
|
|
|
|
endfunc
|
|
|
|
function! AddWinMinWidth(num)
|
|
|
|
let a:new = &winminwidth + a:num
|
|
|
|
call SetWinMinWidth(a:new)
|
|
|
|
set winminwidth?
|
|
|
|
endfunc
|
|
|
|
nnoremap <leader>+ :call AddWinMinWidth(1)<cr>
|
|
|
|
nnoremap <leader>_ :call AddWinMinWidth(-1)<cr>
|
|
|
|
nnoremap <leader>) :EqualW<cr>
|
|
|
|
|
2017-08-19 06:48:08 +00:00
|
|
|
|
|
|
|
if has("autocmd")
|
|
|
|
|
2017-08-19 07:02:59 +00:00
|
|
|
" 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
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-08-19 07:02:59 +00:00
|
|
|
" Put these in an autocmd group, so that we can delete them easily.
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-08-19 07:02:59 +00:00
|
|
|
" For all text files set 'textwidth' to 78 characters.
|
|
|
|
autocmd FileType text setlocal textwidth=78
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-08-19 07:02:59 +00:00
|
|
|
" 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
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-08-19 07:02:59 +00:00
|
|
|
augroup END
|
2017-10-18 16:50:13 +00:00
|
|
|
endif
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" === FILETYPE SPECIFIC STUFF ===
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" Vimscript Stuff
|
2017-10-26 10:39:08 +00:00
|
|
|
au BufNewFile,BufRead *.vim,*vimrc :call <sid>init_vim_file()
|
|
|
|
|
|
|
|
function! s:init_vim_file()
|
|
|
|
nnoremap <buffer> <F5> :so %<CR>
|
|
|
|
nnoremap <leader>c A<space>"<space>
|
|
|
|
nnoremap <leader>if ofunction! <C-o>m'()<enter>endfunction<C-o>`'<C-o>l
|
|
|
|
|
|
|
|
command! -buffer Functions lex MatchingLines("^\\s*fun\\(ction\\)\\?\\>!.*$")
|
|
|
|
command! -buffer Commands lex MatchingLines("^\\s*com\\(mand\\)\\?\\>!.*$")
|
|
|
|
endfunction
|
2017-10-20 07:45:49 +00:00
|
|
|
|
|
|
|
" --- C / C++ Stuff ---
|
2017-10-19 06:41:26 +00:00
|
|
|
|
2017-10-20 07:45:49 +00:00
|
|
|
" Insert Stuff
|
2017-10-26 14:32:00 +00:00
|
|
|
au BufNewFile,BufRead *.c,*.cpp,*.h,*.hpp :nnoremap <buffer> <leader>ii O#include <><esc>i
|
2017-10-20 07:45:49 +00:00
|
|
|
au BufNewFile,BufRead *.c,*.cpp,*.h,*.hpp :nnoremap <buffer> <buffer> <leader>ip oprintf("<C-o>m'\n");<esc>`'a
|
|
|
|
au BufNewFile,BufRead *.c,*.cpp,*.h,*.hpp :nnoremap <buffer> <leader>im oint main(int argc, char *args[]) {<CR>}<esc>O
|
|
|
|
" Other Stuff
|
2017-10-18 16:50:13 +00:00
|
|
|
au BufNewFile,BufRead *.c,*.cpp,*.h,*.hpp :nnoremap <buffer> ; m'$a;<C-c>`'
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-20 07:45:49 +00:00
|
|
|
" --- Ruby Stuff ---
|
2017-10-26 10:39:08 +00:00
|
|
|
au BufNewFile,BufRead *.rb :call <sid>init_ruby_file()
|
|
|
|
|
|
|
|
function! s:init_ruby_file()
|
|
|
|
command! -buffer Defines lex MatchingLines("^\\s*def\\>.*$")
|
|
|
|
command! -buffer Functions Defines " Alias
|
|
|
|
command! -buffer Methods Defines " Alias
|
|
|
|
command! -buffer Classes lex MatchingLines("^\\s*class\\>.*$")
|
|
|
|
command! -buffer Modules lex MatchingLines("^\\s*module\\>.*$")
|
|
|
|
|
|
|
|
nnoremap <buffer> <leader>ic oclass <C-o>m'<enter>end<esc>`'a
|
|
|
|
nnoremap <buffer> <leader>id odef <C-o>m'()<enter>end<esc>`'a
|
|
|
|
|
|
|
|
setl expandtab
|
|
|
|
nnoremap <buffer> <F5> :w<CR>:!ruby %<CR>
|
|
|
|
nnoremap <buffer> <F6> :w<CR>:!ruby -wc %<CR>
|
|
|
|
nnoremap <buffer> <leader>~ :call <SID>RubyComment(0)<CR>
|
|
|
|
nnoremap <buffer> <leader># :call <SID>RubyComment(1)<CR>
|
|
|
|
vnoremap <buffer> <leader>~ :call <SID>RubyComment(0)<CR>
|
|
|
|
vnoremap <buffer> <leader># :call <SID>RubyComment(1)<CR>
|
|
|
|
endfunction
|
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
function! s:RubyComment(a)
|
|
|
|
if a:a==0
|
|
|
|
silent! exec '.s/\m^\s*\zs#*//'
|
|
|
|
elseif a:a==1
|
|
|
|
silent! exec '.s/\v^(\s*#)@!/#/'
|
|
|
|
end
|
|
|
|
endfunction
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
augroup rbindent
|
|
|
|
autocmd!
|
|
|
|
au BufNewFile,BufRead *.rb :set noexpandtab
|
|
|
|
au BufNewFile,BufRead *.rb :retab!
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
au BufWritePre *.rb :set expandtab
|
|
|
|
au BufWritePre *.rb :set tabstop=2 " TODO: find a way to change it back to whatever it was before
|
|
|
|
au BufWritePre *.rb :retab
|
2017-08-19 06:48:08 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
au BufWritepost *.rb :set noexpandtab
|
|
|
|
au BufWritepost *.rb :retab!
|
|
|
|
augroup END
|