From fdaa9c74f3c9a82120478f85565a350a714974b4 Mon Sep 17 00:00:00 2001 From: Tobias Date: Tue, 19 Nov 2024 22:11:56 +0100 Subject: [PATCH] Adding files from old vim repo --- README.MD | 11 +++++++++++ vimrc | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 README.MD create mode 100644 vimrc diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..36ad9a9 --- /dev/null +++ b/README.MD @@ -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 diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..ac4bd47 --- /dev/null +++ b/vimrc @@ -0,0 +1,3 @@ +syntax on +set number +set tabstop=2 shiftwidth=2 expandtab