summaryrefslogtreecommitdiffstats
path: root/.gvimrc
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2016-02-23 08:49:43 (GMT)
committerOlliver Schinagl <oliver@schinagl.nl>2017-04-18 08:05:31 (GMT)
commitc78b21db9d0420ca74e77a49e2e2c174ec034618 (patch)
tree5cb68da925eb676d23e52d36fc62e3b5843ab2c0 /.gvimrc
parent5d4df578ca9829b07a1f686dfb7c71eca1f0d668 (diff)
downloaddotfiles-c78b21db9d0420ca74e77a49e2e2c174ec034618.zip
dotfiles-c78b21db9d0420ca74e77a49e2e2c174ec034618.tar.gz
dotfiles-c78b21db9d0420ca74e77a49e2e2c174ec034618.tar.bz2
vim: Add some more (gui) related settings for my taste
Diffstat (limited to '.gvimrc')
-rw-r--r--.gvimrc14
1 files changed, 12 insertions, 2 deletions
diff --git a/.gvimrc b/.gvimrc
index 63c348b..001c1fc 100644
--- a/.gvimrc
+++ b/.gvimrc
@@ -2,10 +2,11 @@
"set noguipty
" set the X11 font to use
-" set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
+set guifont=Monospace\ 12
-" Make command line two lines high
+" Make command line two lines high and always show it
set ch=1
+set laststatus=2
" Hide the mouse when typing text
set mousehide
@@ -16,3 +17,12 @@ map! <S-Insert> <MiddleMouse>
" Highlighting strings inside C comments
let c_comment_strings=1
+
+" Setup a nice colorscheme
+colorscheme blue
+
+" Enable spellchecking by default
+setlocal spell spelllang=en_us
+
+" Increase the update time of various operations for improved plugin handling
+set updatetime=500