From 6b8d40b9eb6ececf07d02045af570da41708f80f Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 16 Sep 2024 08:44:43 -0400 Subject: [PATCH] add ansible, minikube, pygmentize bashrc config --- bashrc.d/ansible.bashrc | 1 + bashrc.d/minikube.bashrc | 1 + bashrc.d/pygmentize.bashrc | 3 +++ 3 files changed, 5 insertions(+) create mode 100644 bashrc.d/ansible.bashrc create mode 100644 bashrc.d/minikube.bashrc create mode 100644 bashrc.d/pygmentize.bashrc diff --git a/bashrc.d/ansible.bashrc b/bashrc.d/ansible.bashrc new file mode 100644 index 0000000..87a2c13 --- /dev/null +++ b/bashrc.d/ansible.bashrc @@ -0,0 +1 @@ +export ANSIBLE_STDOUT_CALLBACK=yaml diff --git a/bashrc.d/minikube.bashrc b/bashrc.d/minikube.bashrc new file mode 100644 index 0000000..c6c5cdb --- /dev/null +++ b/bashrc.d/minikube.bashrc @@ -0,0 +1 @@ +export MINIKUBE_IN_STYLE=false diff --git a/bashrc.d/pygmentize.bashrc b/bashrc.d/pygmentize.bashrc new file mode 100644 index 0000000..67aae70 --- /dev/null +++ b/bashrc.d/pygmentize.bashrc @@ -0,0 +1,3 @@ +if command -v pygmentize &> /dev/null; then + export LESSCOLORIZER="pygmentize -O style=one-dark" +fi