Update .vimrc

This commit is contained in:
2025-12-07 17:42:41 +00:00
parent e2373987ef
commit 58a31e6467

11
.vimrc
View File

@@ -23,8 +23,10 @@ set smartindent
set shiftwidth=4
set tabstop=4
set softtabstop=4
set list
set listchars="lead:·,tab:··"
set listchars=lead,tab:··
highlight SpecialKey ctermfg=8 guifg=#3c3c3c
" Search
set ignorecase
@@ -33,8 +35,8 @@ set hlsearch
set incsearch
set showmatch
set wildignore="**/node_modules/**,*.o,*.class"
set path=".,**"
set wildignore=**/node_modules/**,*.o,*.class
set path=.,**
" Keybindings
imap JJ <ESC>
@@ -68,3 +70,6 @@ augroup Custom
autocmd FileType typescript,typescriptreact compiler tsc
autocmd FileType go Tabs 4
augroup END
" Theme
highlight QuickFixLine ctermfg=White ctermbg=NONE cterm=NONE