tla
This commit is contained in:
parent
cd083d6af0
commit
962e370036
2 changed files with 6 additions and 1 deletions
|
@ -68,10 +68,12 @@ nmap <F8> :TagbarToggle<CR>
|
||||||
" inoremap <expr><C-n> deoplete#mappings#manual_complete()
|
" inoremap <expr><C-n> deoplete#mappings#manual_complete()
|
||||||
" inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
" 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')
|
if exists('g:loaded_polyglot')
|
||||||
let g:polyglot_disabled = ['go']
|
let g:polyglot_disabled = ['go']
|
||||||
let g:polyglot_disabled = ['rst']
|
let g:polyglot_disabled = ['rst']
|
||||||
|
let g:polyglot_disabled = ['tla']
|
||||||
endif
|
endif
|
||||||
|
au BufRead,BufNewFile *.tla setf tla
|
||||||
|
|
||||||
set nowrap
|
set nowrap
|
||||||
|
|
|
@ -41,5 +41,8 @@ Plug 'zchee/deoplete-jedi'
|
||||||
" Tags
|
" Tags
|
||||||
Plug 'majutsushi/tagbar'
|
Plug 'majutsushi/tagbar'
|
||||||
|
|
||||||
|
" TLA+
|
||||||
|
Plug 'hwayne/tla.vim'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue