added markdown plugins

removed `Shift+Q` keybinding, as it is a hell of annoying
master
Michael Ochmann 4 years ago
parent 68f8dc01d3
commit 43177c7013
  1. 4
      .vimrc

@ -29,6 +29,8 @@ Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx' Plugin 'mxw/vim-jsx'
Plugin 'junegunn/goyo.vim' Plugin 'junegunn/goyo.vim'
Plugin 'junegunn/limelight.vim' Plugin 'junegunn/limelight.vim'
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required
@ -44,6 +46,7 @@ filetype plugin indent on
hi Normal guibg=NONE ctermbg=NONE hi Normal guibg=NONE ctermbg=NONE
colorscheme monokai colorscheme monokai
let g:vim_markdown_folding_disabled = 1
" STATUSLINE " STATUSLINE
set laststatus=2 set laststatus=2
@ -72,6 +75,7 @@ map <silent> <C-n> :NERDTreeToggle<CR>
nnoremap <silent> <C-g> :Goyo<CR> nnoremap <silent> <C-g> :Goyo<CR>
nnoremap <silent> <Space> <C-w> nnoremap <silent> <Space> <C-w>
nnoremap <buffer> <F5> :w<cr> :! clear; ./% <cr> nnoremap <buffer> <F5> :w<cr> :! clear; ./% <cr>
nnoremap Q <nop>
let g:closetag_filenames = '*.html,*.xhtml,*.phtml,*.php' let g:closetag_filenames = '*.html,*.xhtml,*.phtml,*.php'
autocmd BufRead ~/.ssh/config.d/* set syntax=sshconfig autocmd BufRead ~/.ssh/config.d/* set syntax=sshconfig

Loading…
Cancel
Save