Added .vimrc config
This commit is contained in:
parent
48ae43dad3
commit
8cfe4d389e
|
@ -17,6 +17,7 @@ https://github.com/shaunrd0/...
|
||||||
klips/
|
klips/
|
||||||
├──── plates/
|
├──── plates/
|
||||||
│ ├── cpp-cmake (Simple cpp executable template, built using cmake)
|
│ ├── cpp-cmake (Simple cpp executable template, built using cmake)
|
||||||
|
│ │
|
||||||
│ └── cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.)
|
│ └── cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.)
|
||||||
│
|
│
|
||||||
├──── refs/
|
├──── refs/
|
||||||
|
@ -24,10 +25,15 @@ klips/
|
||||||
│
|
│
|
||||||
├──── scripts/
|
├──── scripts/
|
||||||
│ └── cmake-build.sh (Script to toss around and build cmake projects)
|
│ └── 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
|
# Copy / paste below symbols for editing this README / updating hierarchy
|
||||||
|
|
||||||
│ ├ ─ └
|
│ ├ ─ └
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Scripts
|
### Scripts
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
set tabstop=2 shiftwidth=2 expandtab autoindent mouse=a
|
Loading…
Reference in New Issue