aboutsummaryrefslogtreecommitdiff
path: root/.tcshrc
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2023-02-09 19:29:27 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2023-02-09 19:29:27 +0000
commit938e3fc26f7cddf3c2173f326be2a6b8bf1326f3 (patch)
tree1351693639b91221c08bebe87e8a8f8e7c1f51f2 /.tcshrc
parent0a56dfa33a6c00df4ab06eca6eefba8cd80820f5 (diff)
downloaddotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar.gz
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar.bz2
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar.lz
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar.xz
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.tar.zst
dotfiles-938e3fc26f7cddf3c2173f326be2a6b8bf1326f3.zip
Set scrolloff in neovim and add tcsh support
Diffstat (limited to '.tcshrc')
-rw-r--r--.tcshrc20
1 files changed, 20 insertions, 0 deletions
diff --git a/.tcshrc b/.tcshrc
new file mode 100644
index 0000000..481bbc6
--- /dev/null
+++ b/.tcshrc
@@ -0,0 +1,20 @@
+#!/usr/bin/env tcsh
+
+"$HOME/.profile"
+
+set BAT=`which bat || which batcat`
+
+if ( "$BAT" != "" ) then
+ alias cat "$BAT -p"
+endif
+
+alias cls clear
+alias ls `which lsd || echo "ls -h -F --color=auto"`
+alias sudo `which doas || which sudo || echo "su -c"`
+
+set STARSHIP=`which starship`
+
+if ( "$STARSHIP" != "" ) then
+ eval `starship init tcsh`
+endif
+