summaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-04-07 16:29:34 +0100
committerMatthew Lemon <matt@matthewlemon.com>2021-04-07 16:29:34 +0100
commit237743798fc6edf1f9a0952c7f83f08bbc155260 (patch)
treeab880c88a346a59a54f3234e416ed4eb6feeadf2 /vim
parentde3e39863c2d94351a908ba6223e7901c837057c (diff)
changed
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc13
1 files changed, 11 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 5459c7a..f236940 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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