1
0

Compare commits

...

3 Commits

2 changed files with 7 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
"latex": { "latex": {
"command": "/sbin/texlab", "command": "/sbin/texlab",
"filetypes": [ "tex","bib","plaintex","context" ] "filetypes": [ "tex","bib","plaintex","context" ]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh","bash"]
} }
} }
} }

View File

@@ -10,7 +10,7 @@ Plug 'scrooloose/nerdcommenter'
Plug 'javier-lopez/sprunge.vim' Plug 'javier-lopez/sprunge.vim'
Plug 'vim-scripts/Trailer-Trash' Plug 'vim-scripts/Trailer-Trash'
Plug 'vim-scripts/bad-whitespace' Plug 'vim-scripts/bad-whitespace'
Plug 'junegunn/fzf' Plug 'junegunn/fzf.vim'
Plug 'aklt/plantuml-syntax' Plug 'aklt/plantuml-syntax'
Plug 'vim-scripts/scons.vim' Plug 'vim-scripts/scons.vim'
Plug 'danro/rename.vim' Plug 'danro/rename.vim'
@@ -28,7 +28,7 @@ filetype plugin on
" indentation " indentation
set tabstop=4 " tabs only count for 4 spaces set tabstop=4 " tabs only count for 4 spaces
set shiftwidth=4 " when indenting use 4 spaces set shiftwidth=4 " when indenting use 4 spaces
set noexpandtab " use tab characters set expandtab " use tab characters
set autoindent set autoindent
" view " view