Adding files from old vim repo

This commit is contained in:
Tobias 2024-11-19 22:11:56 +01:00
commit fdaa9c74f3
2 changed files with 14 additions and 0 deletions

11
README.MD Normal file
View File

@ -0,0 +1,11 @@
This is a simple vim config that sets the following:
Enables syntax highligthing
Enables line numbers being shown
Converts tabs to 2 spaces
To use this config simple copy the vimrc to your homedir and name it .vimrc
GLHF

3
vimrc Normal file
View File

@ -0,0 +1,3 @@
syntax on
set number
set tabstop=2 shiftwidth=2 expandtab