This commit is contained in:
2026-01-27 20:14:40 +01:00
parent 035412456a
commit 5273628efb
787 changed files with 183 additions and 77582 deletions

6
.vimrc
View File

@@ -7,7 +7,6 @@ syntax enable " enable syntax processing
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set expandtab " tabs are spaces
set number " show line numbers
set showcmd " show command in bottom bar
set cursorline " highlight current line
set wildmenu " visual autocomplete for command menu
@@ -15,6 +14,11 @@ set lazyredraw " redraw only when we need to.
set showmatch " highlight matching [{()}]
set incsearch " search as characters are entered
set hlsearch " highlight matches
set hidden " switch buffers without saving
set ignorecase smartcase " smart case search
set scrolloff=8 " keep 8 lines visible above/below cursor
set undofile " persistent undo across sessions
set mouse=a " mouse support
noremap <Up> <NOP>