From 21ee4d0d0cffbfee12002dd52869e345942ca2e1 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 7 Aug 2014 23:03:22 -0400 Subject: [PATCH] Disable ctrl-z suspend and remove some buggy settings --- vim/config/keyboard.vim | 5 ++++- vim/config/settings.vim | 3 +-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 2745d8a..2d14003 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -289,7 +289,10 @@ map map - " unmap mousewheel combos to ensure the old behaviour stays gone + "-unmap the suspend function + map + + "unmap mousewheel combos to ensure the old behaviour stays gone map map map diff --git a/vim/config/settings.vim b/vim/config/settings.vim index acb19bb..8c77c1b 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -55,7 +55,6 @@ "USER INTERFACE: {{{ 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 number "enable line numbers set nowrap "disable line wrapping @@ -67,7 +66,6 @@ set showmatch "show matching open bracket when closed bracket is inserted 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 - set shellcmdflag=-ic "add interactive shell so aliases from ~/.bashrc are read "enable tab completion in command mode and configure how it handles extensions set completeopt=longest,menuone @@ -85,6 +83,7 @@ set hlsearch incsearch ignorecase smartcase "configure how search behaves 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 noesckeys "disable escape keys "enable the auto-creation of missing folders in a save path if !exists('*s:MakeNewDir')