Don't set mouse in plugin/settings

This commit is contained in:
2021-01-18 19:25:46 +01:00
parent 9ebb168c14
commit acb27b5f9f
3 changed files with 4 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-eunuch' Plugin 'tpope/vim-eunuch'
Plugin 'majutsushi/tagbar' Plugin 'majutsushi/tagbar'
Plugin 'jceb/vim-orgmode'
"Python "Python
Plugin 'vim-python/python-syntax' Plugin 'vim-python/python-syntax'
@@ -46,6 +47,8 @@ call vundle#end()
"Local settings "Local settings
"{{{ "{{{
set guifont=JetBrains\ Mono\ 12 set guifont=JetBrains\ Mono\ 12
"When on remote terminal this incites rage
set mouse=a
if !empty($DISPLAY) if !empty($DISPLAY)
colorscheme snowhite colorscheme snowhite

View File

@@ -1,3 +1 @@
nnoremap <buffer> <localleader>x :term cargo run<cr> nnoremap <buffer> <localleader>x :term cargo run<cr>
iabbrev print println!("{}",
iabbrev debug println!("{:?}",

View File

@@ -41,6 +41,7 @@ set cino=(0,u0,Ws,m1
" {{{ " {{{
let g:tex_fold_enabled = 1 let g:tex_fold_enabled = 1
let g:javaScript_fold = 1 let g:javaScript_fold = 1
let g:rust_recommended_style = 0
" }}} " }}}
" Gui stuff " Gui stuff
@@ -48,7 +49,6 @@ let g:javaScript_fold = 1
set guicursor=n-v-i-c:block-Cursor set guicursor=n-v-i-c:block-Cursor
set guicursor+=n-v-i-c:blinkon0 set guicursor+=n-v-i-c:blinkon0
set guioptions=a set guioptions=a
set mouse=a
set langmenu=en_US.UTF-8 set langmenu=en_US.UTF-8
" }}} " }}}