diff options
author | Nao Ueda <nao.uedder@gmail.com> | 2020-12-10 17:57:39 +0900 |
---|---|---|
committer | Nao Ueda <nao.uedder@gmail.com> | 2020-12-10 17:57:39 +0900 |
commit | e16a62ad181f04defba5e414bac52f089823f869 (patch) | |
tree | f3e722c71b813de4667a4451bde2f98d561963d0 | |
parent | e31f3e5cd199dbd29a0cd117762af72d4341eba8 (diff) | |
download | vimrc-e16a62ad181f04defba5e414bac52f089823f869.tar.gz vimrc-e16a62ad181f04defba5e414bac52f089823f869.tar.bz2 vimrc-e16a62ad181f04defba5e414bac52f089823f869.zip |
view indent
-rw-r--r-- | _config/111-indentline.vim | 4 | ||||
-rw-r--r-- | vimrc | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/_config/111-indentline.vim b/_config/111-indentline.vim new file mode 100644 index 0000000..c6e8cd0 --- /dev/null +++ b/_config/111-indentline.vim @@ -0,0 +1,4 @@ +UsePlugin 'indentline' + +let g:indentLine_concealcursor = 'inc' +let g:indentLine_conceallevel = 2 @@ -13,9 +13,7 @@ set expandtab set shiftwidth=4 set tabstop=4 "インデントをスペース4つ分に設定 set smartindent "オートインデント - -let g:indentLine_setConceal = 0 -set conceallevel=0 " json とかで quote を表示する +set list lcs=tab:\|\ "#####検索設定##### set ignorecase "大文字/小文字の区別なく検索する @@ -104,8 +102,9 @@ Plug 'ntpeters/vim-better-whitespace' Plug 'tpope/vim-surround' Plug 'tpope/vim-repeat' -" auto detect indent +" for indent Plug 'ciaranm/detectindent' +Plug 'Yggdroot/indentline' " Plug 'docunext/closetag.vim' Plug 'yggdroot/indentline' |