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
|
2017-11-06 12:18:40 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
if &t_Co > 2 || has("gui_running")
|
|
|
|
syntax on
|
|
|
|
set hlsearch "Highlight search results
|
2017-08-19 06:48:08 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-06 09:07:53 +00:00
|
|
|
if v:version > 702
|
|
|
|
set cm=blowfish
|
|
|
|
end
|
|
|
|
|
2017-08-19 06:48:08 +00:00
|
|
|
set nocompatible
|
2017-10-18 16:50:13 +00:00
|
|
|
""""""""""""""""
|
2017-11-06 09:00:07 +00:00
|
|
|
set linespace=0
|
|
|
|
set scrolloff=6
|
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
|
2017-11-07 15:55:22 +00:00
|
|
|
" set gfn=Courier_New:h12:cANSI
|
2017-10-18 16:50:13 +00:00
|
|
|
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
|
2017-11-06 10:29:05 +00:00
|
|
|
" set noswapfile
|
2017-11-06 12:18:40 +00:00
|
|
|
set swapfile
|
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
|
|
|
|
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=+->\
|
2017-11-06 09:00:07 +00:00
|
|
|
set listchars=eol:¶,tab:»\ ,trail:.,nbsp:.
|
|
|
|
set cursorline " Highlight cursor line
|
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
|
2017-10-31 12:52:03 +00:00
|
|
|
if has('unnamedplus') " Allow copying to and from OS clipboard
|
|
|
|
set clipboard=unnamedplus
|
|
|
|
else
|
|
|
|
set clipboard=unnamed
|
|
|
|
end
|
2017-10-18 16:50:13 +00:00
|
|
|
|
2017-10-30 12:01:10 +00:00
|
|
|
" === GENERAL UTILITIES ===
|
2017-11-07 14:28:10 +00:00
|
|
|
|
|
|
|
function! s:autoClose_HelperOpen(open, close)
|
|
|
|
let next_c = getline(".")[col(".")-1]
|
|
|
|
if match(next_c, "\s")
|
|
|
|
return a:open.a:close."\<Left>"
|
|
|
|
else
|
|
|
|
return a:open
|
|
|
|
end
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! s:autoClose_HelperClose(open, close)
|
2017-11-07 14:41:36 +00:00
|
|
|
if getline(".")[col(".")-1] ==# a:close
|
2017-11-07 14:28:10 +00:00
|
|
|
return "\<Right>"
|
2017-11-07 14:41:36 +00:00
|
|
|
elseif match(getline("."+1), "\M^\s*".escape(a:close, "\\"))
|
|
|
|
return "\<Down>\<Home>\<C-o>f".a:close."\<Right>"
|
2017-11-07 14:28:10 +00:00
|
|
|
else
|
|
|
|
return a:close
|
|
|
|
end
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! s:autoClose_HelperEnter()
|
|
|
|
if exists("b:autoClose_Pairs")
|
|
|
|
let next_c = getline(".")[col(".")-1]
|
|
|
|
let prev_c = getline(".")[col(".")-2]
|
|
|
|
|
|
|
|
if (next_c !=# "") && (prev_c !=# "")
|
|
|
|
if exists("b:autoClose_Pairs[prev_c]")
|
|
|
|
if (next_c ==# b:autoClose_Pairs[prev_c])
|
|
|
|
return "\<C-o>m'\<enter>\<C-o>`'\<enter>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return "\<enter>"
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! s:autoClose_AddPair(open, close) "TODO: Improve with expand('<sfile>')
|
|
|
|
if !exists("b:autoClose_Pairs")
|
|
|
|
let b:autoClose_Pairs = {}
|
|
|
|
end
|
|
|
|
let b:autoClose_Pairs[a:open] = a:close
|
|
|
|
|
|
|
|
exe "inoremap <buffer> <expr> ".a:open." <SID>autoClose_HelperOpen('".a:open."', '".a:close."')"
|
|
|
|
exe "inoremap <buffer> <expr> ".a:close." <SID>autoClose_HelperClose('".a:open."', '".a:close."')"
|
|
|
|
inoremap <buffer> <expr> <enter> <SID>autoClose_HelperEnter()
|
|
|
|
endfunc
|
|
|
|
|
2017-10-30 12:01:10 +00:00
|
|
|
function! MatchingLines(pattern)
|
|
|
|
let list = []
|
|
|
|
let pattern = a:pattern
|
|
|
|
exec "g/".pattern."/ call add(list, expand('%').'('.line('.').') : '.matchstr(getline('.'), '".pattern."'))"
|
|
|
|
return list
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! s:mld_helper(list, pattern)
|
|
|
|
" Helper function for MatchingLinesDict
|
2017-11-01 11:43:42 +00:00
|
|
|
call add(a:list, {'filename': expand("%"), 'lnum': line("."), 'col': match(getline("."), a:pattern)+1, 'text': matchstr(getline("."), a:pattern)})
|
2017-10-30 12:01:10 +00:00
|
|
|
endfunc
|
|
|
|
function! MatchingLinesDict(pattern)
|
|
|
|
let list = []
|
|
|
|
silent! exec "g/".a:pattern."/ call s:mld_helper(list, a:pattern)"
|
|
|
|
return list
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! LocationAddLineCol(filename, lnum, text, col)
|
|
|
|
call setloclist(0, [{'filename': a:filename, 'lnum': a:lnum, 'desc': a:text, 'col': a:col}], 'a')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! QuickfixAddLineCol(filename, lnum, text, col)
|
|
|
|
call setqflist([{'filename': a:filename, 'lnum': a:lnum, 'desc': a:text, 'col': a:col}], 'a')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! LocationAddLine(filename, lnum, text)
|
|
|
|
call setloclist(0, [{'filename': a:filename, 'lnum': a:lnum, 'desc': a:text}], 'a')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! QuickfixAddLine(filename, lnum, text)
|
|
|
|
call setqflist([{'filename': a:filename, 'lnum': a:lnum, 'desc': a:text}], 'a')
|
|
|
|
endfunction
|
|
|
|
|
2017-11-01 11:43:42 +00:00
|
|
|
" Original implementation: https://stackoverflow.com/a/6271254/4984564
|
2017-10-31 12:52:03 +00:00
|
|
|
function! VisualSelection()
|
2017-11-01 11:43:42 +00:00
|
|
|
if mode()=="v"
|
|
|
|
let [line_start, column_start] = getpos("v")[1:2]
|
|
|
|
let [line_end, column_end] = getpos(".")[1:2]
|
|
|
|
else
|
|
|
|
let [line_start, column_start] = getpos("'<")[1:2]
|
|
|
|
let [line_end, column_end] = getpos("'>")[1:2]
|
|
|
|
end
|
|
|
|
if (line2byte(line_start)+column_start) > (line2byte(line_end)+column_end)
|
|
|
|
let [line_start, column_start, line_end, column_end] =
|
|
|
|
\ [line_end, column_end, line_start, column_start]
|
|
|
|
end
|
|
|
|
let lines = getline(line_start, line_end)
|
|
|
|
if len(lines) == 0
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
let lines[-1] = lines[-1][: column_end - 1]
|
|
|
|
let lines[0] = lines[0][column_start - 1:]
|
|
|
|
return join(lines, "\n")
|
2017-10-31 12:52:03 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-11-01 11:43:42 +00:00
|
|
|
function! StringReverse(str)
|
|
|
|
return join(reverse(split(str, ".\\zs")), "")
|
|
|
|
endfunc
|
|
|
|
|
2017-10-26 10:39:08 +00:00
|
|
|
" === GENERAL COMMANDS ===
|
|
|
|
command! L lopen | set number | set norelativenumber
|
2017-10-30 12:01:10 +00:00
|
|
|
command! LAddLine call LocationAddLine(expand("%"), line("."), getline("."))
|
|
|
|
command! QAddLine call QuickfixAddLine(expand("%"), line("."), getline("."))
|
|
|
|
command! LAddCursor call LocationAddLineCol(expand("%"), line("."), getline("."), col("."))
|
|
|
|
command! QAddCursor call QuickfixAddLineCol(expand("%"), line("."), getline("."), col("."))
|
2017-10-26 10:39:08 +00:00
|
|
|
|
2017-11-06 09:00:07 +00:00
|
|
|
command! Fixme call setloclist(0, MatchingLinesDict("\\c\\<fixme.*"))
|
|
|
|
command! Todo call setloclist(0, MatchingLinesDict("\\c\\<todo.*"))
|
2017-10-26 10:39:08 +00:00
|
|
|
|
2017-10-30 12:01:10 +00:00
|
|
|
command! -nargs=1 LFind call setloclist(0, MatchingLinesDict(<args>))
|
|
|
|
command! -nargs=1 QFind call setqflist(MatchingLinesDict(<args>))
|
2017-10-26 11:24:02 +00:00
|
|
|
|
2017-10-18 16:50:13 +00:00
|
|
|
" === GENERAL KEY MAPPINGS ===
|
|
|
|
let mapleader = "\\"
|
2017-11-06 09:00:07 +00:00
|
|
|
|
2017-11-06 15:31:27 +00:00
|
|
|
" --- /dev/null ---
|
|
|
|
noremap <leader>d "_d
|
|
|
|
noremap <leader>d "_d
|
|
|
|
noremap x "_x
|
|
|
|
noremap <leader>x x
|
|
|
|
|
2017-11-07 15:55:22 +00:00
|
|
|
" --- Numbvers ---
|
|
|
|
nnoremap <leader>] <C-a>
|
|
|
|
nnoremap <leader>[ <C-x>
|
|
|
|
|
2017-11-06 09:00:07 +00:00
|
|
|
" --- MOVEMENT ---
|
|
|
|
nnoremap j gj
|
|
|
|
nnoremap k gk
|
|
|
|
|
|
|
|
" --- CLIPBOARD ---
|
|
|
|
nnoremap Y y$
|
|
|
|
|
|
|
|
" --- OTHER ---
|
|
|
|
" Don't exit visual mode when shifting
|
|
|
|
vnoremap < <gv
|
|
|
|
vnoremap > >gv
|
|
|
|
|
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
|
2017-11-03 07:09:12 +00:00
|
|
|
" noremap <C-s> :w<CR>
|
|
|
|
noremap <C-s> :echo "Calm the fuck down! There's
|
|
|
|
\ no need to save every 10 seconds FFS!"<CR>
|
2017-10-18 16:50:13 +00:00
|
|
|
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
|
2017-11-03 07:09:12 +00:00
|
|
|
com! Removetrailingspaces let _s=@/ | %s/\v(\\@<!\s)+$//ge | let @/=_s
|
2017-10-18 16:50:13 +00:00
|
|
|
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-31 12:52:03 +00:00
|
|
|
nnoremap <expr> <S-r> ":%s/\\<".expand("<cword>")."\\>/"
|
2017-11-01 11:43:42 +00:00
|
|
|
vnoremap <expr> <S-r> ":<C-u>%s/".VisualSelection()."/"
|
|
|
|
" Put in new line with indentation
|
|
|
|
nnoremap ]p :let [content, type]=
|
|
|
|
\[getreg(v:register), getregtype(v:register)] \|
|
|
|
|
\call setreg(v:register, content, "V")<CR>]p
|
|
|
|
\:call setreg(v:register, content, type)<CR>
|
|
|
|
nnoremap [p :let [content, type]=
|
|
|
|
\[getreg(v:register), getregtype(v:register)] \|
|
|
|
|
\call setreg(v:register, content, "V")<CR>[p
|
|
|
|
\:call setreg(v:register, content, type)<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-11-03 07:09:12 +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
|
|
|
|
|
|
|
|
" === 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
|
|
|
|
|
2017-11-03 07:09:12 +00:00
|
|
|
" Autosave when vim loses focus :)
|
|
|
|
function! TryAutosave()
|
2017-10-18 16:50:13 +00:00
|
|
|
if &autowriteall==1
|
|
|
|
silent w
|
2017-10-18 16:58:06 +00:00
|
|
|
redraw
|
2017-10-18 16:50:13 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
2017-11-03 07:09:12 +00:00
|
|
|
au FocusLost * call TryAutosave()
|
|
|
|
au WinLeave * call TryAutosave()
|
2017-10-18 16:50:13 +00:00
|
|
|
|
|
|
|
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\\)\\?\\>!.*$")
|
2017-10-30 12:01:10 +00:00
|
|
|
command! -buffer Autocommands lex MatchingLines("^\\s*au\\(tocmd\\)\\?\\>!\\@!.*$")
|
2017-10-26 10:39:08 +00:00
|
|
|
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()
|
2017-10-30 14:50:14 +00:00
|
|
|
command! -buffer Defines lex MatchingLines("^\\s*def\\>\\s\\+\\zs.*$")
|
2017-10-26 10:39:08 +00:00
|
|
|
command! -buffer Functions Defines " Alias
|
|
|
|
command! -buffer Methods Defines " Alias
|
2017-10-30 14:50:14 +00:00
|
|
|
command! -buffer Classes lex MatchingLines("^\\s*class\\>\\s\\+\\zs.*$")
|
|
|
|
command! -buffer Modules lex MatchingLines("^\\s*module\\>\\s\\+\\zs.*$")
|
2017-10-26 10:39:08 +00:00
|
|
|
|
|
|
|
nnoremap <buffer> <leader>ic oclass <C-o>m'<enter>end<esc>`'a
|
|
|
|
nnoremap <buffer> <leader>id odef <C-o>m'()<enter>end<esc>`'a
|
|
|
|
|
2017-11-03 07:09:12 +00:00
|
|
|
set expandtab
|
2017-10-26 10:39:08 +00:00
|
|
|
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>
|
2017-11-07 14:28:10 +00:00
|
|
|
|
|
|
|
call s:autoClose_AddPair("{", "}")
|
|
|
|
call s:autoClose_AddPair("(", ")")
|
2017-11-07 14:41:36 +00:00
|
|
|
call s:autoClose_AddPair("[", "]")
|
2017-10-26 10:39:08 +00:00
|
|
|
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-11-03 07:09:12 +00:00
|
|
|
" augroup rbindent
|
|
|
|
" autocmd!
|
|
|
|
" au BufNewFile,BufRead *.rb :set noexpandtab | :retab! |
|
|
|
|
"
|
|
|
|
" au BufWritePre *.rb :let ts = &tabstop | set expandtab | set tabstop=2 | retab | let &tabstop=ts | :set noexpandtab
|
|
|
|
"
|
|
|
|
" au BufWritepost *.rb :silent! :undo | :exe "normal \<C-O>"
|
|
|
|
" augroup END
|
2017-10-30 15:52:24 +00:00
|
|
|
|
2017-10-30 15:56:35 +00:00
|
|
|
" --- Lua Stuff ---
|
2017-10-30 15:52:24 +00:00
|
|
|
au BufNewFile,BufRead *.lua :call <sid>init_lua_file()
|
|
|
|
|
|
|
|
function! s:init_lua_file()
|
|
|
|
command! -buffer Requires lex MatchingLines("^\\s*require\\>.*$")
|
|
|
|
endfunction!
|
2017-10-30 15:56:35 +00:00
|
|
|
|
2017-10-30 14:50:14 +00:00
|
|
|
" --- HTML Stuff ---
|
2017-11-04 12:16:10 +00:00
|
|
|
au BufNewFile,BufRead *.html,*.htm,*.etlua,*.erb :call <sid>init_html_file()
|
2017-10-30 14:50:14 +00:00
|
|
|
|
|
|
|
function! s:init_html_file()
|
|
|
|
command! -buffer -nargs=1 Tag normal
|
|
|
|
\ i<<args>><<C-o>m'/<args>><ESC>`'
|
|
|
|
nnoremap <buffer> <leader>t ""ciw<<C-o>""p><C-o>m'</<C-o>""p><C-o>`'<C-o>l
|
|
|
|
nnoremap <buffer> <leader>T ""diw<C-o>"_cc<<C-o>""p><C-o>o</<C-o>""p><C-o>O
|
|
|
|
|
|
|
|
inoremap <buffer> <C-space> <C-o>""ciw<<C-o>""p><C-o>m'</<C-o>""p><C-o>`'<C-o>l
|
|
|
|
inoremap <buffer> <C-CR> <C-o>""diw<C-o>"_cc<<C-o>""p><C-o>o</<C-o>""p><C-o>O
|
|
|
|
endfunction
|