diff --git a/.vim/ftplugin/mail.vim b/.vim/ftplugin/mail.vim new file mode 100644 index 0000000..291b811 --- /dev/null +++ b/.vim/ftplugin/mail.vim @@ -0,0 +1 @@ +set wrap diff --git a/.vim/spell/en.utf-8.add b/.vim/spell/en.utf-8.add new file mode 100644 index 0000000..25f0f68 --- /dev/null +++ b/.vim/spell/en.utf-8.add @@ -0,0 +1 @@ +Buller diff --git a/.vim/spell/en.utf-8.add.spl b/.vim/spell/en.utf-8.add.spl new file mode 100644 index 0000000..42431cb Binary files /dev/null and b/.vim/spell/en.utf-8.add.spl differ diff --git a/home/.vimrc b/home/.vimrc index 91f4508..120cc4f 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -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 wb :Vimwiki2HTMLBrowse let g:vimwiki_auto_checkbox = 1 function! VimwikiLinkHandler(link) @@ -216,8 +219,8 @@ execute pathogen#infect() " }} " Scratch File {{ - nmap sc :Scratch - nmap cc :Sscratch + " nmap sc :Scratch + " nmap cc :Sscratch " }} " 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 st :SyntasticToggleMode + nmap sc :SyntasticCheck " }} " }}