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