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><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
|
||||
|
|
|
@ -41,5 +41,8 @@ Plug 'zchee/deoplete-jedi'
|
|||
" Tags
|
||||
Plug 'majutsushi/tagbar'
|
||||
|
||||
" TLA+
|
||||
Plug 'hwayne/tla.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
|
Loading…
Reference in a new issue