diff options
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -65,7 +65,11 @@ set sidescroll=1 set sidescrolloff=10 set virtualedit+=block nnoremap <leader><space> :noh<cr>:call clearmatches()<cr> - + +" calcurse +" markdown notes from https://www.youtube.com/watch?v=I_-MqgpEWFA +autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown + " open a Quickfix window for the last search nnoremap <silent> <leader>/ :execute 'vimgrep /'.@/.'/g %'<CR>:copen<CR> @@ -73,6 +77,11 @@ nnoremap <silent> <leader>/ :execute 'vimgrep /'.@/.'/g %'<CR>:copen<CR> call plug#begin('~/.vim/plugged') Plug 'fatih/vim-go', { 'tag': '*' } Plug 'altercation/vim-colors-solarized' +Plug 'vimwiki/vimwiki' +Plug 'tools-life/taskwiki' +Plug 'powerman/vim-plugin-AnsiEsc' +Plug 'farseer90718/vim-taskwarrior' +Plug 'majutsushi/tagbar' call plug#end() " colorscheme @@ -128,7 +137,7 @@ autocmd FileType python set sts=4 autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType html set omnifunc=htmlcomplete#Complete -syntax off +syntax on filetype indent on filetype plugin on |