This commit is contained in:
Nicole Tietz-Sokolskaya 2021-08-02 15:38:00 -04:00
parent cd083d6af0
commit 962e370036
2 changed files with 6 additions and 1 deletions

View file

@ -68,10 +68,12 @@ nmap <F8> :TagbarToggle<CR>
" inoremap <expr><C-n> deoplete#mappings#manual_complete()
" inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
" Turn off polyglot for go so they play nice
" Turn off polyglot for some langs so they play nice
if exists('g:loaded_polyglot')
let g:polyglot_disabled = ['go']
let g:polyglot_disabled = ['rst']
let g:polyglot_disabled = ['tla']
endif
au BufRead,BufNewFile *.tla setf tla
set nowrap

View file

@ -41,5 +41,8 @@ Plug 'zchee/deoplete-jedi'
" Tags
Plug 'majutsushi/tagbar'
" TLA+
Plug 'hwayne/tla.vim'
call plug#end()