summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.bash_profile11
-rwxr-xr-x.bashrc15
-rw-r--r--build-docs.el31
3 files changed, 0 insertions, 57 deletions
diff --git a/.bash_profile b/.bash_profile
deleted file mode 100755
index eb09edc..0000000
--- a/.bash_profile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Honor per-interactive-shell startup file
-if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
-
-export PATH="$PATH:~/.local/share/flatpak/exports/bin/"
-export PATH="$PATH:~/.local/bin"
-export PATH="$PATH:~/go/bin"
-export QT_QPA_PLATFORMTHEME="qt5ct"
-GUIX_PROFILE="$HOME/.guix-profile"
-. "$GUIX_PROFILE/etc/profile"
-export EDITOR="emacsclient"
-export GOBIN="/home/apollo/go/bin"
diff --git a/.bashrc b/.bashrc
deleted file mode 100755
index ec59455..0000000
--- a/.bashrc
+++ /dev/null
@@ -1,15 +0,0 @@
-# Bash initialization for interactive non-login shells and
-# for remote shells (info "(bash) Bash Startup Files").
-
-# Export 'SHELL' to child processes. Programs such as 'screen'
-# honor it and otherwise use /bin/sh.
-
-
-source ~/.shells/alias.sh
-source ~/.shells/exports.sh
-#source ~/.shells/prompt
-
-PS1='\n\[\e[0m\][\[\e[0;1;38;5;208m\]\w\[\e[0;2;38;5;248m\]|\[\e[0;2;38;5;220m\]$(git branch 2>/dev/null | grep '"'"'^*'"'"' | colrm 1 2) \[\e[0;2;38;5;242m\]\t\[\e[0m\]]\n\[\e[0m\]-\[\e[0m\]> \[\e[0m\]'
-
-#eval "$(starship init bash)"
-
diff --git a/build-docs.el b/build-docs.el
deleted file mode 100644
index 01e13c1..0000000
--- a/build-docs.el
+++ /dev/null
@@ -1,31 +0,0 @@
-(require 'package)
-(setq package-user-dir (expand-file-name "./.packages"))
-(setq package-archives '(("melpa" . "https://melpa.org/packages/")
- ("elpa" . "https://elpa.gnu.org/packages/")))
-
-;; Initialize the package system
-(package-initialize)
-(unless package-archive-contents
- (package-refresh-contents))
-
-;; Load the publishing system
-(require 'ox-publish)
-
-(setq org-publish-project-alist
- (list
- (list "org-site:main"
- :recursive nil
- :base-extension "org"
- :base-directory "./org"
- :publishing-function 'org-md-publish-to-md
- :publishing-directory "./"
- :with-author nil ;; Don't include author name
- :with-creator t ;; Include Emacs and Org versions in footer
- :with-toc nil ;; Include a table of contents
- :section-numbers nil ;; Don't include section numbers
- :time-stamp-file nil))) ;; Don't include time stamp in file
-
-;; Generate the site output
-(org-publish-all t)
-
-(message "Build complete!")