dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 196c571a976b6bf5a9fd3f6805f217a263bccc27
parent a335c181a491e5c7ab3c97d34cd4dd589d548396
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sun, 21 Apr 2019 12:21:46 +0200

Remove unnecessary vim options

Diffstat:
M.vim/plugin/00-general.vim | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/.vim/plugin/00-general.vim b/.vim/plugin/00-general.vim @@ -1,12 +1,8 @@ -set autoread " reload files when changed on disk -set backspace=2 " fix broken backspace in some setups -set backupcopy=yes " see :help crontab set clipboard=unnamed " use system clipboard set dictionary+=/usr/share/dict/words " word completion using Ctrl-x Ctrl-k set expandtab " use the appropriate number of spaces for <Tab> set go+=c " do not show popups in gui set hlsearch " highlight search matches -set ignorecase " case-insensitive search set incsearch " search as you type set laststatus=2 " always show the statusline set lbr " break lines between words @@ -17,7 +13,6 @@ set pastetoggle=<F2> " toggle paste mode set scrolloff=3 " show context above-below cursorline set shiftwidth=4 " width for autoindents set smartcase " case-sensitive search if any caps -set splitright " new vertical splits on the right side set tabstop=4 " number of spaces for tab set textwidth=80 " default line width in number of characters set wildmenu " show a navigable menu for tab completion