Disable ctrl-z suspend and remove some buggy settings

This commit is contained in:
Kevin MacMartin 2014-08-07 23:03:22 -04:00
parent fb38ad125c
commit 21ee4d0d0c
2 changed files with 5 additions and 3 deletions

View file

@ -289,6 +289,9 @@
map <A-F1> <Nop> map <A-F1> <Nop>
map <C-F1> <Nop> map <C-F1> <Nop>
"-unmap the suspend function
map <C-z> <Nop>
"unmap mousewheel combos to ensure the old behaviour stays gone "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>

View file

@ -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')