vim stuff, ignore weechat crud

This commit is contained in:
Daniel Flanagan 2017-03-08 15:06:56 -06:00
parent 88e91621de
commit e2c38cd959
2 changed files with 10 additions and 1 deletions

2
misc/weechat/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -516,8 +516,9 @@ map <F5> :setlocal spell!<CR>
noremap <leader>o :!xdg-open <cfile><CR><CR>
" insert newline
" doesn't work in terminals?
noremap <S-Enter> i<Enter><Esc>
noremap <C-S-o> i<Enter><Esc>
" noremap <C-o> i<Enter><Esc>
" keep that dumb window from popping up (wild something or another)
map q: :q
@ -539,3 +540,9 @@ xnoremap > >gv
hi Search cterm=NONE ctermbg=blue ctermfg=black
highlight LineNr ctermbg=none ctermfg=8
highlight CursorLineNr ctermbg=18 ctermfg=gray
fun! VueModifiedFT()
set ft=vue
endfunction
:command! VueModifiedFT call VueModifiedFT()
autocmd BufRead,BufNewFile *.vue VueModifiedFT