This commit is contained in:
Brian Buller 2017-02-01 14:43:30 -06:00
parent 5324d3c9c5
commit cc4e650ffd
4 changed files with 11 additions and 3 deletions

1
.vim/ftplugin/mail.vim Normal file
View File

@ -0,0 +1 @@
set wrap

1
.vim/spell/en.utf-8.add Normal file
View File

@ -0,0 +1 @@
Buller

BIN
.vim/spell/en.utf-8.add.spl Normal file

Binary file not shown.

View File

@ -188,7 +188,10 @@ execute pathogen#infect()
" Misc Things {{
" Vimwiki {{
let g:vimwiki_list = [{'path': '~/Dropbox/Documents/vimwiki/vimwiki', 'path_html': '~/Dropbox/Documents/vimwiki/vimwiki_html/', 'auto_export':'1'}]
let g:vimwiki_list = [
\{'path': '~/Dropbox/Documents/vimwiki/vimwiki', 'path_html': '~/Dropbox/Documents/vimwiki/vimwiki_html/', 'auto_export':'1'},
\{'path': '~/Dropbox/Documents/vimwiki/work', 'path_html': '~/Dropbox/Documents/vimwiki/work_html/', 'auto_export':'1'}
\]
nnoremap <leader>wb :Vimwiki2HTMLBrowse<CR><CR>
let g:vimwiki_auto_checkbox = 1
function! VimwikiLinkHandler(link)
@ -216,8 +219,8 @@ execute pathogen#infect()
" }}
" Scratch File {{
nmap <leader>sc :Scratch<CR>
nmap <leader>cc :Sscratch<CR>
" nmap <leader>sc :Scratch<CR>
" nmap <leader>cc :Sscratch<CR>
" }}
" Show syntax highlighting groups for word under cursor {{
@ -244,6 +247,9 @@ execute pathogen#infect()
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
nmap <leader>st :SyntasticToggleMode<CR>
nmap <leader>sc :SyntasticCheck<CR>
" }}
" }}