1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add toml support

This commit is contained in:
jdhao 2019-12-29 19:40:49 +08:00
parent 507e476161
commit 56b28dcfbe
2 changed files with 5 additions and 0 deletions

4
after/ftplugin/toml.vim Normal file
View File

@ -0,0 +1,4 @@
set tabstop=2 " number of visual spaces per TAB
set softtabstop=2 " number of spaces in tab when editing
set shiftwidth=2 " number of spaces to use for autoindent
set expandtab " expand tab to spaces so that tabs are spaces

View File

@ -300,6 +300,7 @@ Plug 'tpope/vim-scriptease'
Plug 'skywind3000/asyncrun.vim'
" Another asynchronous plugin
" Plug 'tpope/vim-dispatch'
Plug 'cespare/vim-toml'
call plug#end()
"}}
"}