From a3eff8ab95f9de165d4e05d7cc7bca99b52de407 Mon Sep 17 00:00:00 2001 From: Tommy Harris Date: Tue, 23 Mar 2021 06:53:14 -0600 Subject: [PATCH 1/2] Add emacs clocktable & clockreport preferences --- emacs/.spacemacs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/emacs/.spacemacs b/emacs/.spacemacs index d0b1ba5..6ad42e4 100644 --- a/emacs/.spacemacs +++ b/emacs/.spacemacs @@ -423,7 +423,11 @@ This function is called at the very end of Spacemacs initialization." ;; If there is more than one, they won't work right. '(ansi-color-names-vector ["#0a0814" "#f2241f" "#67b11d" "#b1951d" "#4f97d7" "#a31db1" "#28def0" "#b2b2b2"]) + '(org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)) '(org-agenda-files '("~/sync/ATG/tommy_notebook.org")) + '(org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)) + '(org-clocktable-defaults + '(:maxlevel 2 :lang "en" :scope file :block nil :wstart 1 :mstart 1 :tstart nil :tend nil :step nil :stepskip0 nil :fileskip0 nil :tags nil :match nil :emphasize nil :link nil :narrow 40! :indent t :hidefiles nil :formula nil :timestamp nil :level nil :tcolumns nil :formatter nil)) '(package-selected-packages '(ox-twbs realgud test-simple loc-changes load-relative dap-mode lsp-treemacs bui lsp-mode company-plsense yaml-mode web-beautify livid-mode skewer-mode simple-httpd json-mode json-snatcher json-reformat js2-refactor js2-mode js-doc coffee-mode powershell mmm-mode markdown-toc markdown-mode gh-md yapfify xterm-color web-mode tagedit slim-mode shell-pop scss-mode sass-mode pyvenv pytest pyenv-mode py-isort pug-mode pip-requirements org-projectile org-category-capture org-present org-pomodoro alert log4e gntp org-mime org-download multiple-cursors multi-term live-py-mode hy-mode dash-functional htmlize helm-pydoc helm-css-scss helm-company helm-c-yasnippet haml-mode gnuplot fuzzy flycheck-pos-tip pos-tip flycheck eshell-z eshell-prompt-extras esh-help emmet-mode cython-mode company-web web-completion-data company-statistics company-anaconda company auto-yasnippet yasnippet anaconda-mode pythonic ac-ispell auto-complete ws-butler winum which-key volatile-highlights vi-tilde-fringe uuidgen use-package toc-org spaceline restart-emacs request rainbow-delimiters popwin persp-mode pcre2el paradox org-plus-contrib org-bullets open-junk-file neotree move-text macrostep lorem-ipsum linum-relative link-hint indent-guide hungry-delete hl-todo highlight-parentheses highlight-numbers highlight-indentation helm-themes helm-swoop helm-projectile helm-mode-manager helm-make helm-flx helm-descbinds helm-ag google-translate golden-ratio flx-ido fill-column-indicator fancy-battery eyebrowse expand-region exec-path-from-shell evil-visualstar evil-visual-mark-mode evil-unimpaired evil-tutor evil-surround evil-search-highlight-persist evil-numbers evil-nerd-commenter evil-mc evil-matchit evil-lisp-state evil-indent-plus evil-iedit-state evil-exchange evil-escape evil-ediff evil-args evil-anzu eval-sexp-fu elisp-slime-nav dumb-jump diminish define-word column-enforce-mode clean-aindent-mode auto-highlight-symbol auto-compile aggressive-indent adaptive-wrap ace-window ace-link ace-jump-helm-line))) (custom-set-faces From 6f0bbc41216c5a9b12519844ec00d29d933efd50 Mon Sep 17 00:00:00 2001 From: Tommy Harris Date: Tue, 23 Mar 2021 06:54:15 -0600 Subject: [PATCH 2/2] Add alias for colorized 'ip' --- scripts/shell/aliases.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/shell/aliases.sh b/scripts/shell/aliases.sh index d9fb82c..11395ff 100644 --- a/scripts/shell/aliases.sh +++ b/scripts/shell/aliases.sh @@ -4,6 +4,7 @@ alias _=sudo alias l="ls -al" alias se="sudo -e" alias ping="sudo nping -c 0 --delay 2s" +alias ip='ip -c' alias readme='pandoc README.md | lynx -stdin' alias bd='base64 -d'