Removed a fix for KDE's Konsole and added a Markdown preview plugin

This commit is contained in:
Dennis Potter 2018-11-25 16:43:01 +01:00
parent c8c2c9c162
commit b02aff44b9
1 changed files with 6 additions and 4 deletions

View File

@ -11,9 +11,6 @@ let python_highlight_all = 1
set hidden
" This fixes a bug in Konsole https://github.com/neovim/neovim/issues/7002
:set guicursor=
" set options for folding
set foldmethod=syntax
set foldlevelstart=20
@ -40,7 +37,7 @@ map <leader>u :MundoToggle <CR>
nnoremap <leader>l <C-w>l
tnoremap <Esc> <C-\><C-n>
noremap <Esc> <Esc>:noh <CR>
noremap <Esc> <Esc>:noh <CR>
nnoremap <F4> :call vimterm#toggle() <CR>
tnoremap <F4> <C-\><C-n>:call vimterm#toggle() <CR>
@ -84,6 +81,9 @@ endfunction
nnoremap <silent> <leader>; :call ToggleHiddenAll()<CR>
" Markdown preview settings
let g:mkdp_auto_start = 1
" Rust debugging
let g:ycm_rust_src_path = '/home/dennis/code/rust/src'
set statusline+=%#warningmsg#
@ -121,6 +121,8 @@ Plug 'tpope/vim-surround'
Plug 'Shougo/denite.nvim'
Plug 'editorconfig/editorconfig-vim'
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }}
" versioning
Plug 'tpope/vim-fugitive'