Vim Konfiguration

This commit is contained in:
2025-05-23 23:10:48 +02:00
parent 34ef5503ce
commit d2069b3916
6 changed files with 3252 additions and 0 deletions

42
Vim/.vimrc Normal file
View File

@@ -0,0 +1,42 @@
" Disable compatibility with vi which can cause unexpected issues.
set nocompatible
" Enable type file detection. Vim will be able to try to detect the type of file in use.
filetype on
" Enable plugins and load plugin for the detected file type.
filetype plugin on
" Load an indent file for the detected file type.
filetype indent on
" Turn syntax highlighting on.
syntax on
" Line Numbers
set number
" Set tab width to 4 columns.
set tabstop=4
" While searching though a file incrementally highlight matching characters as you type.
set incsearch
" Show matching words during a search.
set showmatch
" Use highlighting when doing a search.
set hlsearch
" PLUGINS ---------------------------------------------------------------- {{{
call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
call plug#end()
" }}}