From 50b8971d4f28c571715c3c93b72463a760237812 Mon Sep 17 00:00:00 2001 From: Rawley Date: Sun, 3 Apr 2022 16:04:35 +0000 Subject: [PATCH] Update .vimrc --- Vim/.vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vim/.vimrc b/Vim/.vimrc index aa892df..f78eae9 100644 --- a/Vim/.vimrc +++ b/Vim/.vimrc @@ -4,6 +4,7 @@ set nocompatible filetype on filetype plugin on filetype indent on +filetype plugin indent on "Plugins in ~/.vim/plugged call plug#begin() Plug 'jiangmiao/auto-pairs' @@ -22,6 +23,7 @@ call plug#begin() Plug 'dracula/vim' Plug 'fatih/vim-go', { 'for': 'go' } Plug 'frazrepo/vim-rainbow' + Plug 'clojure-vim/clojure.vim', { 'for': 'clojure' } call plug#end() "Dracula > All colorscheme dracula @@ -54,3 +56,5 @@ let fts=['clojure', 'lisp', 'lsp', 'cl', 'el', 'eln', 'l', 'elc'] if index(fts, &filetype) != -1 :RainbowToggle endif +let g:clojure_fuzzy_indent = 1 +let g:clojure_align_subforms = 1