1
0

Compare commits

...

7 Commits

2 changed files with 9 additions and 4 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

@@ -17,7 +17,7 @@ Plug 'danro/rename.vim'
Plug 'ciaranm/detectindent' Plug 'ciaranm/detectindent'
Plug 'jiangmiao/auto-pairs' Plug 'jiangmiao/auto-pairs'
Plug 'antoyo/vim-licenses' Plug 'antoyo/vim-licenses'
Plug 'lifepillar/vim-solarized8' Plug 'flazz/vim-colorschemes'
Plug 'xiyaowong/transparent.nvim' Plug 'xiyaowong/transparent.nvim'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() call plug#end()
@@ -29,7 +29,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
@@ -84,7 +84,7 @@ nmap <silent> ]f <Plug>(coc-fix-current)
" syntax highlighting " syntax highlighting
syntax on syntax on
set background=dark set background=dark
colorscheme solarized8 "colorscheme solarized8_dark
highlight Normal ctermbg=none highlight Normal ctermbg=none
""" Project-Specific Settings """ Project-Specific Settings
@@ -115,7 +115,7 @@ let g:rust_recommended_style = 0 " disable retarded option
""" plugin settings """ plugin settings
" airline " airline
let g:airline#extensions#tabline#enabled = 1 " enable tabline let g:airline#extensions#tabline#enabled = 1 " enable tabline
let g:airline_theme='luna' let g:airline_theme='solarized_flood'
if !exists('g:airline_symbols') if !exists('g:airline_symbols')
let g:airline_symbols = {} let g:airline_symbols = {}
endif endif