all repos — dotfiles @ ea99ffacaf17d3389f0c562906dd8ba493cd94e1

my *nix dotfiles

Lowercase current mode in neovim

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Thu, 18 Jul 2019 17:58:13 +0530
commit

ea99ffacaf17d3389f0c562906dd8ba493cd94e1

parent

8a042f473974e47d5a6cbbbd24a49583b00899a6

1 files changed, 19 insertions(+), 19 deletions(-)

jump to
M config/nvim/init.vimconfig/nvim/init.vim

@@ -98,25 +98,25 @@ nnoremap L L:exec 'norm! '. &scrolloff . 'j'<cr>

" statusline let g:currentmode={ - \ 'n' : 'NORMAL ', - \ 'no' : 'N·Operator Pending ', - \ 'v' : 'VISUAL ', - \ 'V' : 'V·Line ', - \ '' : 'V·Block', - \ 's' : 'Select ', - \ 'S' : 'S·Line ', - \ '' : 'S·Block', - \ 'i' : 'INSERT ', - \ 'R' : 'REPLACE ', - \ 'Rv' : 'V·Replace ', - \ 'c' : 'Command ', - \ 'cv' : 'Vim Ex ', - \ 'ce' : 'Ex ', - \ 'r' : 'Prompt ', - \ 'rm' : 'MORE ', - \ 'r?' : 'CONFIRM ', - \ '!' : 'SHELL ', - \ 't' : 'TERMINAL '} + \ 'n' : 'normal ', + \ 'no' : 'n·operator pending ', + \ 'v' : 'visual ', + \ 'V' : 'v·line ', + \ '' : 'v·block ', + \ 's' : 'select ', + \ 'S' : 's·line ', + \ '' : 's·block ', + \ 'i' : 'insert ', + \ 'R' : 'replace ', + \ 'Rv' : 'v·replace ', + \ 'c' : 'command ', + \ 'cv' : 'vim ex ', + \ 'ce' : 'ex ', + \ 'r' : 'prompt ', + \ 'rm' : 'more ', + \ 'r?' : 'confirm ', + \ '!' : 'shell ', + \ 't' : 'terminal '} set statusline= set statusline+=%#PrimaryBlock#