aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-05-07 03:45:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2022-05-07 03:45:29 +1200
commit9ddcdd8321e63d3f2701815ad96a47508605c558 (patch)
tree1ed7083e3e07d56930532c88f2f10f6a1a385093
parentThrow away dunst config for now (diff)
downloaddotfiles-9ddcdd8321e63d3f2701815ad96a47508605c558.tar.gz
dotfiles-9ddcdd8321e63d3f2701815ad96a47508605c558.zip
Remove silly tabs guide
-rw-r--r--TABS.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/TABS.md b/TABS.md
deleted file mode 100644
index dd2be868..00000000
--- a/TABS.md
+++ /dev/null
@@ -1,26 +0,0 @@
-Spaces to tabs
-==============
-
-If you prefer tabs to spaces, the following recipe seems to convert everything
-pretty nicely:
-
- $ find . -name .git -prune -o -name vim -prune -o -type f \
- -exec sh -c \
- 'for f;do unexpand -t4 "$f">"$f".tmp;mv "$f".tmp "$f";done' \
- \_ {} +
-
- $ find vim -name bundle -prune -o -type f \
- -exec sh -c \
- 'for f;do unexpand -t2 "$f">"$f".tmp;mv "$f".tmp "$f";done' \
- \_ {} +
-
-If you have GNU `unexpand(1)` and can add `--first-only` to each of those
-calls, the results seem perfect.
-
-You can configure Vim to accommodate this by removing the settings in
-vim/vimrc.vim for:
-
-- `'expandtab'`
-- `'shiftwidth'`
-- `'smarttab'`
-- `'softtabstop'`