Compare commits

...

2 Commits

Author SHA1 Message Date
c0dev0id
bf213e469f Update 2026-01-26 20:34 OpenBSD/amd64-dalek 2026-01-26 20:35:00 +01:00
c0dev0id
0bd8a43d4f Update 2026-01-26 16:17 OpenBSD/amd64-dalek 2026-01-26 16:17:20 +01:00
2 changed files with 12 additions and 7 deletions

View File

@ -41,3 +41,8 @@
helper = !/usr/bin/gh auth git-credential
[difftool]
prompt = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true

View File

@ -1,7 +1,6 @@
" VIM CORE
set encoding=utf-8
let &titleold="term"
set nocompatible " enable advanced features
set autochdir " current dir is vim workdir
set title " set xterm title
set path+=.,** " expand to dirs under workdir
@ -9,9 +8,7 @@ set mouse=v " don't interract with the mouse
set laststatus=2 " always show the status line
set keywordprg=":help" " show vim help when hitting "K"
set backspace=indent,eol,start " bkspc behave like expected
set ttimeout " activate timeout for key combos
set ttimeoutlen=50 " set timeout for key combinations
set ttyfast
set number " enable line numbers
set numberwidth=6 " space for more numbers
set cursorline " highlight line number+cursor line
@ -21,7 +18,6 @@ endif
"set cursorcolumn " highlight current cursor column
execute "set colorcolumn=" . join(range(73,80), ',')
set modeline " read vim mode line in files
set modelines=5 " top/bottom line no. to search
set lazyredraw " no scr. update during macros
set spelllang=de,en " spell check languages
syntax enable " enable syntax plugin (builtin)
@ -34,10 +30,8 @@ set diffopt=filler,context:20
set diffopt+=iwhite,iblank
" set diffopt+=algorithm:histogram
set diffopt+=vertical
set diffexpr=
filetype plugin indent on " load plugins based on filetype
set re=1 " use old regexp engine (faster)
let mapleader = ","
" INDENTATION
@ -119,7 +113,13 @@ set runtimepath^=/home/sdk/.vim/pack/plugins/start/vim-clap
let g:clap_plugin_experimental = v:true
" CREATE DIRECTORIES
silent execute '!mkdir -p ~/.vim/undo ~/.vim/backup ~/.vim/swapfiles'
" silent execute '!mkdir -p ~/.vim/undo ~/.vim/backup ~/.vim/swapfiles'
for s:dir in ['undo', 'backup', 'swapfiles']
if !isdirectory($HOME . '/.vim/' . s:dir)
call mkdir($HOME . '/.vim/' . s:dir, 'p')
endif
endfor
" LOOK N FEEL
set t_Co=256 " for terminal with 256 colors