summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2022-10-31 09:39:29 +0200
committerSyndamia <kamen@syndamia.com>2022-10-31 09:39:29 +0200
commitb17c2341e8ea9156ec78e4ed954b444a491a3be3 (patch)
tree11c49b6b66abd3f016ad4dc5358286077b99d5e7 /.vimrc
parent7bfc69c5e781a900d12da8e27298d04049d0042e (diff)
downloaddotfiles-b17c2341e8ea9156ec78e4ed954b444a491a3be3.tar
dotfiles-b17c2341e8ea9156ec78e4ed954b444a491a3be3.tar.gz
dotfiles-b17c2341e8ea9156ec78e4ed954b444a491a3be3.zip
[vimrc] Set showmatch and set expandtab to scheme files
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 {{{