vim/vimrc

614 lines
15 KiB
VimL
Raw Normal View History

2017-09-10 20:22:02 +00:00
filetype off " required
set ttyfast
2017-09-10 20:22:02 +00:00
2018-02-22 18:12:33 +00:00
" #plugins
2017-12-26 22:54:44 +00:00
set runtimepath+=~/.vim/bundle/Vundle.vim
2017-09-10 20:22:02 +00:00
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
"css3-syntax
Plugin 'hail2u/vim-css3-syntax.git'
"scss-syntax
Plugin 'cakebaker/scss-syntax.vim'
"bufexplorer
Plugin 'jlanzarotta/bufexplorer'
"tagbar
Plugin 'majutsushi/tagbar'
"vim-surround
Plugin 'tpope/vim-surround'
"undotree
Plugin 'mbbill/undotree'
2017-09-18 20:20:14 +00:00
" vim-project-tags
"dependancy needed:
"https://github.com/still-dreaming-1/vim-project-tags
Plugin 'still-dreaming-1/vim-elhiv'
Plugin 'still-dreaming-1/vim-project-tags'
2017-09-10 20:22:02 +00:00
" Ctrlp
Plugin 'ctrlpvim/ctrlp.vim'
2017-09-12 11:48:30 +00:00
" Obsession
Plugin 'tpope/vim-obsession'
2017-09-13 17:12:03 +00:00
" vim-css-color
Plugin 'ap/vim-css-color'
2017-09-16 15:02:19 +00:00
" vim-javascript-syntax
" Plugin 'jelera/vim-javascript-syntax'
" vim-javascript
Plugin 'pangloss/vim-javascript'
2017-09-16 16:24:09 +00:00
" ultisnips
" https://github.com/sirver/UltiSnips
Plugin 'SirVer/ultisnips'
" and some snippets
" https://github.com/honza/vim-snippets
Plugin 'honza/vim-snippets'
2017-09-17 17:18:23 +00:00
" ALE
" https://github.com/w0rp/ale
Plugin 'w0rp/ale'
" MatchTag
" https://github.com/gregsexton/MatchTag
Plugin 'gregsexton/MatchTag'
" phpcomplete.vim
" https://github.com/shawncplus/phpcomplete.vim
Plugin 'shawncplus/phpcomplete.vim'
" https://github.com/dsawardekar/wordpress.vim
" For up to date Wordpress Files see:
" https://github.com/joseluis/wordpress.vim-generator
"Plugin 'dsawardekar/wordpress.vim'
" disabled - doesn't support universal ctags?
2017-09-20 17:45:44 +00:00
" vim-vue
" https://github.com/posva/vim-vue
Plugin 'posva/vim-vue'
2017-09-30 19:52:20 +00:00
" vim-commentary
2017-09-30 19:53:28 +00:00
" https://github.com/tpope/vim-commentary
2017-09-30 19:52:20 +00:00
Plugin 'tpope/vim-commentary'
2017-09-30 19:58:23 +00:00
" vim-repeat
" https://github.com/tpope/vim-repeat
Plugin 'tpope/vim-repeat'
" taboo.vim
" https://github.com/gcmt/taboo.vim
Plugin 'gcmt/taboo.vim'
2017-12-04 13:43:16 +00:00
" https://github.com/mattn/emmet-vim
Plugin 'mattn/emmet-vim'
2018-01-03 22:05:35 +00:00
" vimwiki
" https://github.com/vimwiki/vimwiki
Plugin 'vimwiki/vimwiki'
2018-01-21 21:09:06 +00:00
" youcompleteme
" https://github.com/Valloric/YouCompleteMe
Plugin 'Valloric/YouCompleteMe'
2018-02-23 13:12:42 +00:00
" gitgutter
" https://github.com/airblade/vim-gitgutter/blob/master/README.mkd
Plugin 'airblade/vim-gitgutter'
2018-03-05 16:00:54 +00:00
" vim-peekaboo
2018-03-05 16:05:40 +00:00
" https://github.com/junegunn/vim-peekaboo
2018-03-05 16:00:54 +00:00
Plugin 'junegunn/vim-peekaboo'
2017-09-10 20:22:02 +00:00
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
2018-02-22 18:12:33 +00:00
" #settings
" set t_Sf=<Esc>[3%p1%dm " foreground colour
if &term == 'xterm-256color'
2018-02-03 18:54:18 +00:00
set termguicolors
endif
2018-02-22 18:12:33 +00:00
syntax on
colorscheme customred256
2018-02-10 11:41:22 +00:00
set guioptions-=mTrLb
set guioptions+=c
2018-02-22 18:12:33 +00:00
" set t_Sb=<Esc>[4%p1%dm " background coloru
2018-02-23 13:12:42 +00:00
set updatetime=100
2018-02-11 21:01:24 +00:00
2017-09-30 22:09:41 +00:00
set backupdir=~/.vimtmp
set directory=~/.vimtmp
2018-02-22 18:12:33 +00:00
" persisitent undo file
set undodir=/home/ray/.vim/undodir
set undofile
2018-02-03 14:41:01 +00:00
set clipboard=unnamedplus
2017-09-18 20:20:14 +00:00
set ignorecase
set smartcase
2017-12-26 22:11:45 +00:00
set wildmenu
set wildmode=longest:full,full
set hidden
2017-12-26 22:54:44 +00:00
set background=dark
2017-10-02 10:30:23 +00:00
set number relativenumber
2018-02-22 18:12:33 +00:00
set hlsearch
2017-12-29 16:37:04 +00:00
set foldcolumn=1
2018-02-22 18:12:33 +00:00
set iskeyword+=-
set scrolloff=10
set showcmd
set incsearch
set laststatus=2
set foldmethod=manual
set showmode
set autoindent
set breakindent
set showbreak=
set mouse=a
set listchars=eol,tab:->,trail:~,extends:>,precedes:<,space
2017-09-18 23:25:41 +00:00
2018-02-22 18:12:33 +00:00
set textwidth=180
set formatoptions=cq
set wrapmargin=0
" key #mappings
let g:mapleader = "\<space>"
2018-02-10 11:58:33 +00:00
" replace current word with last yanked/deleted text
2018-02-11 15:28:21 +00:00
nnoremap <leader>rr "_diwP
2018-02-10 11:58:33 +00:00
" replace current word with last yanked text
2018-02-11 15:28:21 +00:00
nnoremap <leader>ry diw"0P
2018-02-10 11:58:33 +00:00
inoremap jk <esc>
2017-12-26 22:32:39 +00:00
nnoremap A :call CheckLineEnding()<CR>
2018-02-25 18:14:54 +00:00
nnoremap <leader>co :!clear;
2018-03-01 21:35:28 +00:00
2018-03-05 16:25:30 +00:00
nnoremap <leader>gs :!clear; echo 'git status'; git status<CR>
nnoremap <leader>gd :!clear; echo 'git diff'; git diff<CR>
2018-03-05 14:26:44 +00:00
nnoremap <leader>ga :!clear; git add %; git status<CR>
nnoremap <leader>gA :!clear; git add .; git status<CR>
2018-03-01 21:35:28 +00:00
nnoremap <leader>gc :!clear; git commit -m ''<Left>
2018-03-05 16:08:17 +00:00
nnoremap <leader>gg :!clear; git add %; git commit -m ''<Left>
2018-03-05 16:22:44 +00:00
nnoremap <leader>gp :!clear; echo 'git push'; git push<CR>
2018-03-01 21:35:28 +00:00
nnoremap <leader>gl :!clear; git log<CR>
2018-02-18 12:19:37 +00:00
" netrw
nnoremap <leader>ex :Ex<CR>
2018-02-18 12:34:12 +00:00
nnoremap <leader>ee :e .<CR>
2018-02-18 13:07:37 +00:00
nnoremap <leader>eq :Rex<CR>
2017-09-10 20:22:02 +00:00
" better window navigaton
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l
nnoremap <C-k> <C-w>k
nnoremap <C-j> <C-w>j
2018-02-17 14:15:42 +00:00
nnoremap <Esc>j :resize -5<CR>
nnoremap <Esc>k :resize +5<CR>
nnoremap <Esc>l :vertical resize +5<CR>
2018-02-23 13:41:21 +00:00
nnoremap <Esc>h :vertical resize -5<CR>
2018-02-17 14:24:00 +00:00
nnoremap <Esc>= <C-w>=
2017-09-10 20:22:02 +00:00
2017-12-27 12:43:01 +00:00
"location list and quickfix mappings
nnoremap <leader>ll :botright lwindow<CR>
nnoremap <leader>lp :lprev<CR>
nnoremap <leader>ln :lnext<CR>
nnoremap <leader>lc :lclose<CR>
nnoremap <leader>llh :lhistory<CR>
nnoremap <leader>llp :lolder<CR>
nnoremap <leader>lln :lnewer<CR>
nnoremap <leader>qf :botright cwindow<CR>
nnoremap <leader>qp :cprev<CR>
nnoremap <leader>qn :cnext<CR>
nnoremap <leader>qc :cclose<CR>
nnoremap <leader>qfh :chistory<CR>
nnoremap <leader>qfp :colder<CR>
nnoremap <leader>qfn :cnewer<CR>
2017-12-29 12:24:31 +00:00
nnoremap <leader>nh :noh<CR>
2017-12-27 13:15:57 +00:00
" quick grep of visual selection
vnoremap <leader>gr y:grep! -R <C-r>" .
2017-12-27 13:28:03 +00:00
" open quickfix window of TODOs
2017-12-27 13:46:18 +00:00
nnoremap <leader>td :grep! -R '// *TODO' .<CR>:botright cwindow<CR>:echo len(getqflist()) 'TODOs'<CR>
2017-12-27 13:28:03 +00:00
2017-09-18 21:08:35 +00:00
" brace/quotes completion
2018-02-11 15:28:21 +00:00
inoremap {{ {}<left>
2018-02-11 21:01:24 +00:00
inoremap {<CR> {<CR>}<esc>O
inoremap {; {<CR>};<esc>O
inoremap }} {{}}<Left><Left>
2018-02-11 15:28:21 +00:00
inoremap (( ()<Left>
2018-02-11 21:01:24 +00:00
inoremap (; ();<Left><Left>
2018-02-11 15:28:21 +00:00
inoremap [[ []<Left>
2018-02-11 21:01:24 +00:00
inoremap [<CR> [<CR>]<esc>O
2018-02-11 15:28:21 +00:00
2018-02-11 21:01:24 +00:00
inoremap "" ""<Left>
inoremap "; "";<Left><Left>
inoremap '' ''<Left>
inoremap '; '';<Left><Left>
2018-02-11 15:28:21 +00:00
inoremap ;; ;<esc>
2017-10-04 11:16:08 +00:00
2017-12-29 12:26:05 +00:00
nnoremap <leader>nn :set invrelativenumber<CR>
2017-12-29 12:30:07 +00:00
nnoremap <leader>hl :nohlsearch<CR>
2017-12-29 12:24:31 +00:00
2018-02-11 15:28:21 +00:00
" devdocs mapping
nnoremap <leader>dd :DD<CR>
2018-02-22 18:12:33 +00:00
" #abbreviations
iabbrev adn and
iabbrev waht what
iabbrev tehn then
2017-09-10 20:22:02 +00:00
2017-09-12 19:55:49 +00:00
2018-02-22 18:12:33 +00:00
" #statusline format
2018-03-06 13:59:45 +00:00
" isactive = 0 when inactive, 1 otherwise
function! GetStatus(isactive)
let l:separator='%#StatusLineSeparator#'
let l:statusline=''
" linter status
let l:statusline.='%#InterfaceH2# %{LinterStatus()} %*'
" file info
if a:isactive == 1
let l:statusline.='%q%h%w%r'
let l:statusline.=" %{strlen(&ft)?&ft:'none'},"
let l:statusline.='%{strlen(&fenc)?&fenc:&enc},'
let l:statusline.='%{&fileformat} '
2018-03-06 14:01:56 +00:00
let l:statusline.=l:separator . ' %* %{&spelllang} %*'
2018-03-06 13:59:45 +00:00
else
let l:statusline.=l:separator
2018-03-05 21:27:09 +00:00
endif
2018-03-06 13:59:45 +00:00
" current register
if a:isactive
let l:statusline.=l:separator . ' %* "%{v:register}" %*'
endif
2018-03-05 21:27:09 +00:00
2018-03-06 13:59:45 +00:00
" session status
if a:isactive
let l:statusline.=l:separator . ' %*'
let l:statusline.=" %{ObsessionStatus(fnamemodify(v:this_session,':t'),'---')} %*"
let l:statusline.=l:separator . ' %*'
endif
2018-03-05 21:27:09 +00:00
2018-03-06 13:59:45 +00:00
" right/left separator
let l:statusline.='%='
2018-03-05 21:27:09 +00:00
2018-03-06 13:59:45 +00:00
" path/filename.extension
2018-03-05 21:27:09 +00:00
let l:statusline.='%#StatusLineDir# '
2018-03-06 13:59:45 +00:00
if a:isactive
let l:statusline.="%{expand('%:p:h:t')}/"
else
let l:statusline.="%{expand('%:p:h')}/"
endif
" if &l:modified
" let l:statusline.='%#StatusLineFileMod#'
" else
" let l:statusline.='%#StatusLineFile#'
" endif
2018-03-05 21:27:09 +00:00
let l:statusline.='%#StatusLineFile#'
2018-03-06 13:59:45 +00:00
2018-03-05 21:27:09 +00:00
let l:statusline.="%{expand('%:t:r')}"
let l:statusline.='%#StatusLineDot#'
2018-03-06 13:59:45 +00:00
2018-03-05 21:27:09 +00:00
let l:statusline.='%#StatusLineExt#'
2018-03-06 13:59:45 +00:00
let l:statusline.="%{strlen(expand('%:e'))?'.':''}"
let l:statusline.="%{strlen(expand('%:e'))?expand('%:e'):expand('%:e')}"
2018-03-05 21:27:09 +00:00
let l:statusline.=' %*'
2018-03-06 13:59:45 +00:00
" modified flag
let l:statusline.='%#StatusLineMod#%M' . l:separator . ' %*'
2018-03-05 21:27:09 +00:00
2018-03-06 13:59:45 +00:00
" file percentage
let l:statusline.='%#InterfaceNormalDark# %P %*'
2018-03-05 21:27:09 +00:00
return l:statusline
endfunction
2018-03-06 13:59:45 +00:00
2018-03-05 21:27:09 +00:00
augroup status
autocmd!
2018-03-06 13:59:45 +00:00
autocmd WinEnter * setlocal statusline=%!GetStatus(1)
autocmd WinLeave * setlocal statusline=%!GetStatus(0)
autocmd InsertChange * setlocal statusline=%!GetStatus(1)
2018-03-05 21:27:09 +00:00
augroup END
2017-09-10 20:22:02 +00:00
2018-02-22 18:12:33 +00:00
" #autocommands
2017-09-10 20:22:02 +00:00
2018-02-01 17:46:16 +00:00
" persistent folds
augroup AutoSaveFolds
autocmd!
autocmd BufWritePost *.* mkview
2018-02-01 17:46:16 +00:00
autocmd BufWinEnter *.* silent loadview
augroup END
" set custom syntax highlighting
2017-12-28 21:01:58 +00:00
augroup syntaxhighlighting
2018-03-14 11:27:56 +00:00
autocmd BufNewFile,BufRead *.html set syntax=html
autocmd BufNewFile,BufRead *.php set syntax=php
autocmd BufNewFile,BufRead *.vue set syntax=vue
2017-12-28 21:01:58 +00:00
autocmd BufNewFile,BufRead *.vue syntax sync fromstart
2018-03-14 10:55:41 +00:00
autocmd BufNewFile,BufRead *.js set syntax=pangloss_javascript
2017-12-28 21:01:58 +00:00
augroup END
2017-09-12 19:55:49 +00:00
2017-09-10 20:22:02 +00:00
" fix higlight problems such as vertical-align etc
augroup VimCSS3Syntax
autocmd!
autocmd FileType css setlocal iskeyword+=-
augroup END
" Show trailing whitepace and spaces before a tab:
augroup whitespaceerrors
autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ containedin=ALL
augroup END
2017-09-12 19:55:49 +00:00
" automatically reload if color scheme file written
augroup coloreload
au!
au BufWritePost customred256.vim so $MYVIMRC
augroup end
2017-12-28 21:01:58 +00:00
augroup linenumbering
autocmd InsertEnter * :set norelativenumber
autocmd InsertLeave * :set number relativenumber
autocmd WinEnter * :set number relativenumber
autocmd WinLeave * set norelativenumber
augroup END
2017-09-12 19:55:49 +00:00
2017-12-28 21:01:58 +00:00
augroup colorcolumns
autocmd WinEnter * set colorcolumn=80
autocmd WinLeave * set colorcolumn=0
augroup END
2017-09-10 20:22:02 +00:00
" Automatically reload .vimrc if chanaged
augroup myvimrc
au!
au BufWritePost .vimrc,_vimrc,vimrc,.gvimrc,_gvimrc,gvimrc so $MYVIMRC | if has('gui_running') | so $MYGVIMRC | endif
augroup END
2018-02-22 18:12:33 +00:00
" #functions
function! CheckLineEnding()
:normal $
if getline('.')[col('.')-1] == ';' || getline('.')[col('.')-1] == ','
:startinsert
else
:startinsert!
endif
endfunction
2018-02-22 18:12:33 +00:00
" get name of syntax item
function! SyntaxItem()
return synIDattr(synID(line('.'),col('.'),1),'name') . ' -> ' . synIDattr(synIDtrans(synID(line('.'),col('.'),1)), 'name' )
endfunction
nnoremap <leader>p :echom SyntaxItem()<CR>
" devdocs DD
" https://gist.github.com/romainl/8d3b73428b4366f75a19be2dad2f0987#file-devdocs-vim
function! s:Get_env() abort
if has('win64') || has('win32') || has('win16')
return 'WINDOWS'
else
return toupper(substitute(system('uname'), '\n', '', ''))
endif
endfunction
" What command to use on what system
2018-03-05 16:03:26 +00:00
let s:cmds = {'DARWIN': 'open', 'LINUX': 'qutebrowser', 'WINDOWS': 'start'}
2018-02-22 18:12:33 +00:00
" Build the URL stub
let s:stub = s:cmds[<SID>Get_env()] . " 'http://devdocs.io/?q="
command! -nargs=* DD silent! call system(len(split(<q-args>, ' ')) == 0 ?
\ s:stub . &ft . ' ' . expand('<cword>') . "'" : len(split(<q-args>, ' ')) == 1 ?
\ s:stub . &ft . ' ' . <q-args> . "'" : s:stub . <q-args> . "'")
" use ranger as file manager
if !exists('*RangerExplorer')
function RangerExplorer()
exec 'silent !ranger --choosefile=/tmp/vim_ranger_current_file ' . expand('%:p:h')
if filereadable('/tmp/vim_ranger_current_file')
exec 'edit ' . system('cat /tmp/vim_ranger_current_file')
call system('rm /tmp/vim_ranger_current_file')
endif
redraw!
endfun
map <Leader>ra :call RangerExplorer()<CR>
endif
" #plugin settings
2017-09-12 12:09:12 +00:00
2018-03-05 16:00:54 +00:00
" vim-peekaboo
let g:peekaboo_window = 'vert to 30new'
2018-02-23 13:31:14 +00:00
" gitgutter
nmap ]h <Plug>GitGutterNextHunk
nmap [h <Plug>GitGutterPrevHunk
2018-02-23 13:38:26 +00:00
omap ih <Plug>GitGutterTextObjectInnerPending
omap ah <Plug>GitGutterTextObjectOuterPending
xmap ih <Plug>GitGutterTextObjectInnerVisual
xmap ah <Plug>GitGutterTextObjectOuterVisual
2018-02-23 13:31:14 +00:00
2017-12-27 13:15:57 +00:00
" Use the silver searcher ag command instead of grep
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
2017-09-12 12:09:12 +00:00
2018-02-22 20:11:43 +00:00
"vim-wiki
let g:vimwiki_list = [{'path': '~/vimwiki/', 'path_html': '~/vimwiki_html/'}]
2018-01-21 22:07:49 +00:00
" youcompleteme
let g:ycm_collect_identifiers_from_tags_files = 1
2017-12-04 13:43:16 +00:00
" emmet
2018-02-11 15:41:34 +00:00
let g:user_emmet_leader_key='<C-y>'
2017-12-04 13:43:16 +00:00
" taboo.vim
set sessionoptions+=tabpages,globals
2017-12-26 22:54:44 +00:00
let g:taboo_tab_format = ' %f%m '
let g:taboo_renamed_tab_format = ' %l%m '
let g:taboo_modified_tab_flag = '+'
2017-09-20 17:45:44 +00:00
" vue-vim
" disable preprocessor checking for vue files - increases speed
let g:vue_disable_pre_processors=1
2017-09-18 20:20:14 +00:00
2017-09-17 17:18:23 +00:00
" ALE
2017-12-26 22:54:44 +00:00
nnoremap <leader>ne :lnext<cr>
nnoremap <leader>pe :lprev<cr>
2017-09-17 17:18:23 +00:00
let g:ale_sign_error = '>>'
let g:ale_sign_warning = '--'
2017-09-17 17:32:04 +00:00
let g:ale_sign_column_always = 1
2017-09-17 17:18:23 +00:00
let g:ale_linters = {'scss': ['stylelint'], 'javascript': ['eslint'], 'php':['php'], 'html':['htmlhint']}
2017-09-17 17:18:23 +00:00
let g:ale_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix'
" let g:ale_javascript_eslint_options = '-c ~/.config/eslint/.eslintrc.js'
let g:ale_fixers = {'javascript': ['eslint']}
" function! ale#handlers#eslint#FindConfig(buffer)
" return '/home/ray/.config/eslint/.eslintrc.js'
" endfunction
2017-09-17 17:18:23 +00:00
function! LinterStatus() abort
let l:counts = ale#statusline#Count(bufnr(''))
let l:all_errors = l:counts.error + l:counts.style_error
let l:all_non_errors = l:counts.total - l:all_errors
2017-12-26 22:54:44 +00:00
return l:counts.total == 0 ? 'OK' : printf('%dW %dE', l:all_non_errors, l:all_errors)
2017-09-17 17:18:23 +00:00
endfunction
"nmap <silent> <C-k> <Plug>(ale_previous_wrap)
"nmap <silent> <C-j> <Plug>(ale_next_wrap)
2017-09-16 17:25:59 +00:00
2017-09-16 16:24:09 +00:00
" ultisnips
2018-02-11 22:27:09 +00:00
let g:UltiSnipsSnippetsDir="~/.vim/UltiSnips"
2017-09-16 16:24:09 +00:00
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
2018-02-11 21:01:24 +00:00
let g:UltiSnipsExpandTrigger='<c-j>'
2017-12-26 22:54:44 +00:00
let g:UltiSnipsJumpForwardTrigger='<c-b>'
let g:UltiSnipsJumpBackwardTrigger='<c-z>'
2018-02-11 21:01:24 +00:00
let g:UltiSnipsEditSplit='horizontal'
2017-09-16 15:33:22 +00:00
2018-02-18 12:19:37 +00:00
" Netrw
let g:netrw_liststyle=3
2018-02-18 13:27:19 +00:00
let g:netrw_list_hide='^\..*'
2018-02-18 12:19:37 +00:00
2017-09-10 20:22:02 +00:00
" NERDtree
2018-02-18 12:29:48 +00:00
" nnoremap <F3> :NERDTreeFocus<CR>
" nnoremap <leader>nt :NERDTreeFocus<CR>
" nnoremap <leader>nf :NERDTreeFind<CR>
" " allow closing if only window open is a NERDTree
" augroup nerdtreewindow
" autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
" augroup END
" let NERDTreeQuitOnOpen = 1
2017-09-10 20:22:02 +00:00
" TagBar
nnoremap <leader>tb :TagbarOpen fj<CR>
2017-09-18 22:16:32 +00:00
let g:tagbar_autoclose = 1
2017-09-10 20:22:02 +00:00
" tagbar css/scss thingy
nnoremap <leader>] :tag /[.#@]<c-r>=expand('<cword>')<cr><cr>
" bufexploer
2017-09-16 17:25:59 +00:00
nnoremap <leader>o :BufExplorer<CR>
2017-09-10 20:22:02 +00:00
2017-09-16 17:25:59 +00:00
" undotree
2017-09-10 20:22:02 +00:00
nnoremap <leader>ut :UndotreeToggle<cr>
2017-09-18 20:20:14 +00:00
" vim-project-tags
source ~/.vim/bundle/vim-elhiv/elhiv.vim
2017-12-26 22:11:45 +00:00
" override function so we can have custom tag names for built in languages
2017-12-26 22:11:45 +00:00
" function! project_tags#add_built_in_language_support()
" call project_tags#add_language('.jstags', 'js')
" call project_tags#add_language('.vimtags', 'vim')
" call project_tags#add_language('.phptags', 'php')
" endfunction
" above function causes error (maybe autoloading problem when no
" tags are being used or whatever?)
" see if following three lines work instead
call project_tags#add_language('.jstags', 'js')
call project_tags#add_language('.vimtags', 'vim')
call project_tags#add_language('.phptags', 'php')
call project_tags#add_language('.csstags','css')
call project_tags#add_language('.scsstags','scss')
2017-09-18 20:20:14 +00:00
let g:tagbar_type_css = {
\ 'ctagstype' : 'css',
\ 'kinds' : [
\ 'c:classes',
\ 'i:ids',
\ 't:tags',
\ 'm:medias'
\ ]
\}
2017-09-10 20:22:02 +00:00
let g:tagbar_type_scss = {
\ 'ctagstype' : 'scss',
\ 'kinds' : [
\ 'v:variables',
\ 'c:classes',
\ 'i:ids',
\ 't:tags',
\ 'd:medias',
\ 'm:mixins',
\ 'f:functions'
\ ]
\}
2018-01-21 22:07:49 +00:00
let g:tagbar_type_vue = {
\ 'ctagstype' : 'vue',
\ 'kinds' : [
\ 'o:objects',
\ 'f:functions',
\ 'a:array',
\ 's:string',
\ 'b:boolean',
\ 'n:number',
\ 'v:variable'
\ ]
\ }
2018-01-21 23:19:09 +00:00
2017-09-10 20:22:02 +00:00
" ze end