From 231bce970a773791e17d391873b7b9767b1037d5 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 8 Nov 2021 12:25:55 +0100 Subject: [PATCH] vim: disable bells and window auto-resize --- nvim/init.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index 4c704b8..956c1bd 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -5,11 +5,13 @@ if $XDG_DATA_HOME == "" | let $XDG_DATA_HOME="~/.local/share" | endif " Options {{{ set backspace=indent,eol,start " sane backspace behavior set background=dark " always use dark background +set belloff=all " never ring bells set nobackup " don't keep backup file after overwriting a file set clipboard=unnamedplus " synchronize with system clipboard set colorcolumn=+1 " highlight column after 'textwidth' set cursorline " highlight the line of the cursor set diffopt=filler,vertical " make side-by-side diffs better +set noequalalways " don't resize all windows when splitting set expandtab " use spaces whe is inserted set fileformats=unix,mac,dos " prioritize unix format set foldenable " enable folding