vimrc: Remove smarttab setting

This commit is contained in:
Lexi / Zoe 2026-04-08 13:50:05 +02:00
parent f1c6dceb42
commit bec5fb2084
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232

13
.vimrc
View file

@ -15,7 +15,6 @@ set smartcase
" Indentation options (yeah let's switch to spaces instead of tabs I guess...)
set autoindent
set expandtab
set smarttab
set shiftwidth=4
set tabstop=4
set softtabstop=4
@ -27,14 +26,8 @@ filetype plugin on
autocmd BufNewFile,BufRead *.gitconfig set syntax=gitconfig
autocmd BufNewFile,BufRead *.rasi set syntax=scss
" Indentation for Python (use 4 spaces)
"autocmd FileType python setlocal expandtab shiftwidth=4 softtabstop=4
autocmd FileType yml,yaml setlocal ts=2 sts=2 sw=2 expandtab
" Indentation (don't remove tabs from empty lines)
"inoremap <CR> <CR>x<BS>
"nnoremap o ox<BS>
"nnoremap O Ox<BS>
" Indentation for YAML (use 2 spaces)
autocmd FileType yml,yaml setlocal sts=2 sw=2
" Mouse settings
set mouse=a
@ -142,7 +135,7 @@ inoremap <A-l> <C-o>l
" Unindent with Shift-Tab
inoremap <S-Tab> <C-o><<
" Copy and to X clipboard (Ctrl-C in visual mode and Ctrl-V in insert mode)
" Copy to and paste from X clipboard (Ctrl-C in visual mode and Ctrl-V in insert mode)
vmap <C-C> "+y
imap <C-V> <C-\><C-O>"+P