aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-30 22:36:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-30 22:36:50 +1200
commit751eeb947a20e1bcd6e79a53bc3d15cd27bf2371 (patch)
treec5c0b3f51bb7552631ce7d7634a4eede14c2e0e0
parentMerge branch 'release/v1.14.0' into develop (diff)
downloaddotfiles-751eeb947a20e1bcd6e79a53bc3d15cd27bf2371.tar.gz
dotfiles-751eeb947a20e1bcd6e79a53bc3d15cd27bf2371.zip
Add +title settings to .vimrc
-rw-r--r--vim/vimrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 9fc842b5..9cee7a39 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -150,6 +150,12 @@ if has('linebreak')
endif
+" Don't set window icons or titles in terminals or the GUI
+if has('title')
+ set noicon
+ set notitle
+endif
+
" Let me move beyond buffer text in visual block mode
if has('virtualedit')
set virtualedit+=block