X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/16d05be62a402d08757b54cdb10345b86d00135d..c2bffc001def9a65b0b1749472771e8fc65f39a9:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 7c12179..cc35b08 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -46,6 +46,7 @@ Plug 'tpope/vim-endwise' Plug 'tpope/vim-eunuch' Plug 'tpope/vim-fugitive' Plug 'tpope/vim-repeat' +Plug 'tpope/vim-speeddating' Plug 'tpope/vim-surround' "investigate vim-sandwich Plug 'tpope/vim-unimpaired' Plug 'tweekmonster/spellrotate.vim' @@ -82,8 +83,11 @@ Plug 'shougo/deoplete.nvim' " {{{2 Plug 'roxma/nvim-yarp' Plug 'roxma/vim-hug-neovim-rpc' let g:deoplete#enable_at_startup = 1 - "}}}2 + +Plug 'jceb/vim-orgmode' +let g:org_agenda_files = ['~/org/*.org'] + call plug#end() call deoplete#custom#option('sources', { @@ -808,7 +812,7 @@ nnoremap gs :set operatorfunc=SortLinesOpFuncg@ vnoremap gs :sort " edit configs {{{2 -function! EditConfig(what) +function! EditConfig(what, ext = '.vim') let l:dir = split(&runtimepath,',')[0] if a:what == 'vimrc' let l:file = expand($MYVIMRC) @@ -817,7 +821,7 @@ function! EditConfig(what) elseif empty(&filetype) echoe 'filetype is empty!' else - let l:file = l:dir.'/'.a:what.'/'.&filetype.'.vim' + let l:file = l:dir.'/'.a:what.'/'.&filetype.a:ext endif execute ':vsplit '.file @@ -827,7 +831,7 @@ nmap ev :call EditConfig('vimrc') nmap ef :call EditConfig('ftplugin') nmap es :call EditConfig('syntax') nmap ei :call EditConfig('indent') -nmap eu :UltiSnipsEdit:lcd %:p:h +nmap eu :call EditConfig('ultisnips', '.snippets') " spell check {{{2 " http://tex.stackexchange.com/a/52932