Emacs org configuration

Changed org-mode configuration to use melpa instead of elpa to remove
warnings for deprication of org mode from melpa.

Also removed all icon configuration for starship which seems to fix
issues with glyphs not showing up with Programata Pro.
Joe Bellus 10 months ago
parent 79d557e036
commit 0f34b807ab

@ -60,7 +60,6 @@ Setup environment for packages
#+begin_src emacs-lisp
(require 'package)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("elpa" . "https://elpa.gnu.org/packages/")))
(package-initialize)
(unless package-archive-contents
@ -459,6 +458,7 @@ Set line numbering for programming modes
(use-package visual-fill-column :hook
(org-mode . fs/org-mode-visual-fill))
#+end_src
*** Code Blocks & Babel
#+begin_src emacs-lisp
(require 'org-tempo)
@ -485,7 +485,7 @@ Set line numbering for programming modes
(python . t)))
(setq org-plantuml-jar-path
(expand-file-name "/usr/share/java/plantuml/plantuml.jar"))
(expand-file-name "/opt/plantuml/plantuml.jar"))
#+end_src
*** Latex & Exporting
@ -658,16 +658,6 @@ I
(lsp-treemacs-sync-mode 1)
#+end_src
** VTerm
#+begin_src emacs-lisp
(use-package vterm
:ensure t
:config
(setq vterm-max-scrollback 10000))
;; (define-key vterm-mode-map (kbd "C-c") 'vterm-send-C-c)
#+end_src
** Dashboard
#+begin_src emacs-lisp
;; (use-package dashboard
@ -866,7 +856,7 @@ Insert a UUID via uuidgen at the cursor
:commands (lsp lsp-deferred)
:init
:custom
(lsp-rust-analyzer-cargo-watch-command "clippy")
;; (lsp-rust-analyzer-cargo-watch-command "clippy")
(lsp-eldoc-render-all nil)
(lsp-idle-delay 0.6)
(lsp-rust-analyzer-server-display-inlay-hints nil)

@ -4,73 +4,4 @@
* icons
#+begin_src conf
[aws]
symbol = " "
[buf]
symbol = " "
[c]
symbol = " "
[conda]
symbol = " "
[dart]
symbol = " "
[directory]
read_only = " "
[docker_context]
symbol = " "
[elixir]
symbol = " "
[elm]
symbol = " "
[git_branch]
symbol = " "
[golang]
symbol = " "
[haskell]
symbol = " "
[hg_branch]
symbol = " "
[java]
symbol = " "
[julia]
symbol = " "
[memory_usage]
symbol = " "
[nim]
symbol = " "
[nix_shell]
symbol = " "
[nodejs]
symbol = " "
[package]
symbol = " "
[python]
symbol = " "
[spack]
symbol = "🅢 "
[rust]
symbol = " "
#+end_src

Loading…
Cancel
Save