Update .vimrc
This commit is contained in:
parent
d308f39d92
commit
50b8971d4f
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@ set nocompatible
|
||||||
filetype on
|
filetype on
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
filetype indent on
|
filetype indent on
|
||||||
|
filetype plugin indent on
|
||||||
"Plugins in ~/.vim/plugged
|
"Plugins in ~/.vim/plugged
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'jiangmiao/auto-pairs'
|
Plug 'jiangmiao/auto-pairs'
|
||||||
|
@ -22,6 +23,7 @@ call plug#begin()
|
||||||
Plug 'dracula/vim'
|
Plug 'dracula/vim'
|
||||||
Plug 'fatih/vim-go', { 'for': 'go' }
|
Plug 'fatih/vim-go', { 'for': 'go' }
|
||||||
Plug 'frazrepo/vim-rainbow'
|
Plug 'frazrepo/vim-rainbow'
|
||||||
|
Plug 'clojure-vim/clojure.vim', { 'for': 'clojure' }
|
||||||
call plug#end()
|
call plug#end()
|
||||||
"Dracula > All
|
"Dracula > All
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
@ -54,3 +56,5 @@ let fts=['clojure', 'lisp', 'lsp', 'cl', 'el', 'eln', 'l', 'elc']
|
||||||
if index(fts, &filetype) != -1
|
if index(fts, &filetype) != -1
|
||||||
:RainbowToggle
|
:RainbowToggle
|
||||||
endif
|
endif
|
||||||
|
let g:clojure_fuzzy_indent = 1
|
||||||
|
let g:clojure_align_subforms = 1
|
||||||
|
|
Loading…
Reference in a new issue