summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 8f5ec56..80acdcc 100644
--- a/.vimrc
+++ b/.vimrc
@@ -56,6 +56,8 @@
set number " Show line numbers to the left
set scrolloff=0 " Don't keep any screen lines above or below the cursor
set mouse=a " Mouse support
+
+ set showmatch " Cursor jumps to matching opening bracket automatically
" Thin cursor in insert mode in Gnome-Terminal (version >=3.16 ; also works with Terminator)
if has("autocmd")
@@ -76,7 +78,7 @@
autocmd BufRead,BufNewFile *.component.css set filetype=css
autocmd FileType css,ts setlocal ts=2 sw=2 sts=0 expandtab " Transform tabs in CSS and TS into 2 spaces
- autocmd FileType lisp setlocal expandtab
+ autocmd FileType lisp,scheme setlocal expandtab
" }}}
" Folding {{{