From 8cfe4d389ef4cb6df4c49bb8af91b12c864fe488 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Fri, 26 Jul 2019 16:29:41 -0400 Subject: [PATCH] Added .vimrc config --- README.md | 6 ++++++ configs/.vimrc | 1 + 2 files changed, 7 insertions(+) create mode 100644 configs/.vimrc diff --git a/README.md b/README.md index 83837b2..f6d3660 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ https://github.com/shaunrd0/... klips/ ├──── plates/ │ ├── cpp-cmake (Simple cpp executable template, built using cmake) +│ │ │ └── cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.) │ ├──── refs/ @@ -24,10 +25,15 @@ klips/ │ ├──── scripts/ │ └── cmake-build.sh (Script to toss around and build cmake projects) +│ +├──── configs/ +│ └──.vimrc (Sets vim tabwidth=2, uses spaces instead of tabs, allows mouse interaction when available.) + # Copy / paste below symbols for editing this README / updating hierarchy │ ├ ─ └ + ``` ### Scripts diff --git a/configs/.vimrc b/configs/.vimrc new file mode 100644 index 0000000..61e1ad7 --- /dev/null +++ b/configs/.vimrc @@ -0,0 +1 @@ +set tabstop=2 shiftwidth=2 expandtab autoindent mouse=a