parent
55521d34c2
commit
fcb9200378
1 changed files with 5 additions and 8 deletions
|
@ -45,11 +45,9 @@ Plug 'NLKNguyen/c-syntax.vim'
|
|||
Plug 'hdima/python-syntax'
|
||||
Plug 'rust-lang/rust.vim', {'for': 'rust'}
|
||||
Plug 'dag/vim-fish', {'for': 'fish'}
|
||||
Plug 'tpope/vim-markdown', {'for': 'markdown'}
|
||||
Plug 'LnL7/vim-nix', {'for': 'nix'}
|
||||
Plug 'chikamichi/mediawiki.vim'
|
||||
Plug 'godlygeek/tabular' " for vim-markdown
|
||||
Plug 'plasticboy/vim-markdown', {'for': 'markdown'}
|
||||
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
@ -136,6 +134,10 @@ set updatetime=107
|
|||
" Activate linux coding style helper only in certain dirs
|
||||
let g:linuxsty_patterns = ["/usr/src", "/linux", "~/git/linux", "~/devel/linux"]
|
||||
|
||||
" markdown
|
||||
let g:markdown_syntax_conceal = 0
|
||||
let g:markdown_fenced_languages = ['html', 'python']
|
||||
|
||||
" disable modelines
|
||||
set nomodeline
|
||||
|
||||
|
@ -160,11 +162,6 @@ nnoremap <Leader>u :UndotreeToggle<cr>
|
|||
" U is quite useless
|
||||
nnoremap U :echo "NOPE!"<CR>
|
||||
|
||||
" markdown
|
||||
let g:vim_markdown_folding_disabled = 1 " FIXME: the folds flicker open and
|
||||
" closed for some reason
|
||||
let g:vim_markdown_conceal = 0 " do not conseal markup
|
||||
|
||||
" Statusline
|
||||
function! s:statusline_builder()
|
||||
let l:buffer = "[%n]%<%f%m%r "
|
||||
|
|
Loading…
Add table
Reference in a new issue