aboutsummaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-11-13 12:41:14 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-11-13 12:41:14 +0100
commit9a90b8a6862ff2255de715d38c2078f8fc872274 (patch)
tree26d0ffd418d98296613f6ac9b39ec2afce719853 /_posts
parentd33ba404ef693b85fa9ce445c49b64e188648b81 (diff)
downloadmitjafelicijan.com-9a90b8a6862ff2255de715d38c2078f8fc872274.tar.gz
Fix a note typo
Diffstat (limited to '_posts')
-rw-r--r--_posts/2023-11-07-personal-sane-vim-defaults.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2023-11-07-personal-sane-vim-defaults.md b/_posts/2023-11-07-personal-sane-vim-defaults.md
index 77ed024..be8b2ae 100644
--- a/_posts/2023-11-07-personal-sane-vim-defaults.md
+++ b/_posts/2023-11-07-personal-sane-vim-defaults.md
@@ -50,7 +50,7 @@ augroup END
50noremap <silent> ,cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> 50noremap <silent> ,cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR>
51noremap <silent> ,cu :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> 51noremap <silent> ,cu :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR>
52 52
53" Language specific intentation. 53" Language specific indentation.
54filetype plugin indent on 54filetype plugin indent on
55autocmd Filetype make,go,c,cpp setlocal noexpandtab tabstop=4 shiftwidth=4 55autocmd Filetype make,go,c,cpp setlocal noexpandtab tabstop=4 shiftwidth=4
56autocmd Filetype html,js,css setlocal expandtab tabstop=2 shiftwidth=2 56autocmd Filetype html,js,css setlocal expandtab tabstop=2 shiftwidth=2