added existing nvim config

This commit is contained in:
gyoder 2025-06-14 11:41:23 +02:00
parent d6d6dab380
commit bdf3cdecda
24 changed files with 996 additions and 0 deletions

30
vim/.vim/settings.vim Normal file
View file

@ -0,0 +1,30 @@
filetype on
filetype plugin on
filetype indent on
syntax on
set number
set cursorline
set cursorcolumn
set clipboard=unnamedplus
set tabstop=2
set expandtab
set softtabstop=2
set shiftwidth=2
set cc=120
set scrolloff=10
set nowrap
set incsearch
set ignorecase
set smartcase
set showcmd
set showmode
set showmatch
set hlsearch
set history=1000
set splitright
if version >= 703
set undodir=~/.vim/backup
set undofile
set undoreload=10000
endif