mirror of
https://github.com/prurigro/darkcloud-vimconfig.git
synced 2024-11-22 14:44:11 -05:00
Disable ctrl-z suspend and remove some buggy settings
This commit is contained in:
parent
fb38ad125c
commit
21ee4d0d0c
2 changed files with 5 additions and 3 deletions
|
@ -289,7 +289,10 @@
|
||||||
map <A-F1> <Nop>
|
map <A-F1> <Nop>
|
||||||
map <C-F1> <Nop>
|
map <C-F1> <Nop>
|
||||||
|
|
||||||
" unmap mousewheel combos to ensure the old behaviour stays gone
|
"-unmap the suspend function
|
||||||
|
map <C-z> <Nop>
|
||||||
|
|
||||||
|
"unmap mousewheel combos to ensure the old behaviour stays gone
|
||||||
map <C-ScrollWheelUp> <Nop>
|
map <C-ScrollWheelUp> <Nop>
|
||||||
map <C-ScrollWheelDown> <Nop>
|
map <C-ScrollWheelDown> <Nop>
|
||||||
map <A-ScrollWheelUp> <Nop>
|
map <A-ScrollWheelUp> <Nop>
|
||||||
|
|
|
@ -55,7 +55,6 @@
|
||||||
|
|
||||||
"USER INTERFACE: {{{
|
"USER INTERFACE: {{{
|
||||||
set laststatus=2 showcmd statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v] "statusline init and config
|
set laststatus=2 showcmd statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v] "statusline init and config
|
||||||
set shortmess=atI "make messages less verbose
|
|
||||||
set lazyredraw "don't redraw the screen while macros are executing
|
set lazyredraw "don't redraw the screen while macros are executing
|
||||||
set number "enable line numbers
|
set number "enable line numbers
|
||||||
set nowrap "disable line wrapping
|
set nowrap "disable line wrapping
|
||||||
|
@ -67,7 +66,6 @@
|
||||||
set showmatch "show matching open bracket when closed bracket is inserted
|
set showmatch "show matching open bracket when closed bracket is inserted
|
||||||
set matchtime=5 "the amount of time before the matching bracket will highlight
|
set matchtime=5 "the amount of time before the matching bracket will highlight
|
||||||
let &showbreak="" "character to prepend to wrapped lines when linewrapping is enabled
|
let &showbreak="" "character to prepend to wrapped lines when linewrapping is enabled
|
||||||
set shellcmdflag=-ic "add interactive shell so aliases from ~/.bashrc are read
|
|
||||||
|
|
||||||
"enable tab completion in command mode and configure how it handles extensions
|
"enable tab completion in command mode and configure how it handles extensions
|
||||||
set completeopt=longest,menuone
|
set completeopt=longest,menuone
|
||||||
|
@ -85,6 +83,7 @@
|
||||||
set hlsearch incsearch ignorecase smartcase "configure how search behaves
|
set hlsearch incsearch ignorecase smartcase "configure how search behaves
|
||||||
set timeout timeoutlen=1000 "how long before timing out for mappings
|
set timeout timeoutlen=1000 "how long before timing out for mappings
|
||||||
set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes
|
set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes
|
||||||
|
set noesckeys "disable escape keys
|
||||||
|
|
||||||
"enable the auto-creation of missing folders in a save path
|
"enable the auto-creation of missing folders in a save path
|
||||||
if !exists('*s:MakeNewDir')
|
if !exists('*s:MakeNewDir')
|
||||||
|
|
Loading…
Reference in a new issue