diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-11-20 18:49:18 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-11-20 18:49:18 +0900 |
| commit | 19aa195280459fa83fc4a518e24197670b2d1712 (patch) | |
| tree | 8c4fc4f7ac538fff7313e1852ac8ef0275cff734 | |
| parent | 70c69e658eaca218ad0de13039c70cabf267a20e (diff) | |
| download | dotfiles-19aa195280459fa83fc4a518e24197670b2d1712.tar.gz dotfiles-19aa195280459fa83fc4a518e24197670b2d1712.tar.zst dotfiles-19aa195280459fa83fc4a518e24197670b2d1712.zip | |
vim: coding style
| -rw-r--r-- | .vimrc | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -115,7 +115,7 @@ set display=lastline let &fillchars = 'stl: ,stlnc: ,vert: ,fold: ,diff: ' set cmdheight=2 set list -let &listchars="eol:\u00ac,tab:\u25b8 ,trail:\u00b7,extends:\u00bb,precedes:\u00ab" +let &listchars = "eol:\u00ac,tab:\u25b8 ,trail:\u00b7,extends:\u00bb,precedes:\u00ab" set concealcursor=cnv @@ -779,7 +779,7 @@ xnoremap x "_x nnoremap Y y$ " In Blockwise-Visual mode, select text linewise. -" In default, select text characterwise, neither blockwise nor linewise. +" By default, select text characterwise, neither blockwise nor linewise. xnoremap <expr> Y mode() ==# 'V' ? 'y' : 'Vy' @@ -1522,15 +1522,15 @@ let g:lightline = { \ 'fileformat': 'Lightline_fileformat', \ }, \ 'mode_map': { - \ 'n' : 'N', - \ 'i' : 'I', - \ 'R' : 'R', - \ 'v' : 'V', - \ 'V' : 'V-L', + \ 'n': 'N', + \ 'i': 'I', + \ 'R': 'R', + \ 'v': 'V', + \ 'V': 'V-L', \ "\<C-v>": 'V-B', - \ 'c' : 'C', - \ 's' : 'S', - \ 'S' : 'S-L', + \ 'c': 'C', + \ 's': 'S', + \ 'S': 'S-L', \ "\<C-s>": 'S-B', \ 't': 'T', \ }, |
