Compare commits
8 Commits
master
...
e33e6f476d
| Author | SHA1 | Date | |
|---|---|---|---|
| e33e6f476d | |||
| 8b66bc02b8 | |||
| c10ba7c8a8 | |||
| f7a88e4431 | |||
| be250e2d9c | |||
| c6d32f2b0f | |||
| 58eea72762 | |||
| d508759e33 |
@@ -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"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
8
init.vim
8
init.vim
@@ -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 0x7A69_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
|
||||||
|
|||||||
Reference in New Issue
Block a user