aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/lisp.vim
blob: ef44bbf22113ed32b2561014e6d9afb96ab812f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" Common Lisp vim settings

if exists('b:did_ftplugin')
	unlet b:did_ftplugin
endif


" Indentation
setlocal expandtab
setlocal tabstop=2
setlocal softtabstop=2
setlocal shiftwidth=2


" Use <Space> as LocalLeader
let maplocalleader = "\<Space>"