From c7c271c4574a62959d93e3a7ca5e92aa736e56f6 Mon Sep 17 00:00:00 2001 From: z0rc Date: Tue, 23 Jan 2024 10:08:05 +0100 Subject: [PATCH] added profile and gitconfig --- gitconfig | 6 ++++++ profile | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 gitconfig create mode 100644 profile diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..c27fa35 --- /dev/null +++ b/gitconfig @@ -0,0 +1,6 @@ +[core] + editor = vim +[push] + default = simple +[credential] + helper = cache diff --git a/profile b/profile new file mode 100644 index 0000000..7eb69d6 --- /dev/null +++ b/profile @@ -0,0 +1,8 @@ +PATH="${PATH}:${HOME}/bin" +PAGER="less" +EDITOR="vim" +VISUAL="vim" +export PATH PAGER EDITOR VISUAL + + +alias ll='ls -ahlF'