change erlang on armin and add nerd-icons to emacs
This commit is contained in:
parent
afdd4a7c83
commit
d4e97a4caa
@ -36,16 +36,16 @@
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Filesystem stuff
|
** Filesystem stuff
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq auto-save-default nil)
|
(setq auto-save-default nil
|
||||||
(setq make-backup-files nil)
|
make-backup-files nil
|
||||||
(setq create-lockfiles nil)
|
create-lockfiles nil)
|
||||||
(global-auto-revert-mode t) ;; Change files on disk as they are updated
|
(global-auto-revert-mode t) ;; Change files on disk as they are updated
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** GUI stuff
|
** GUI stuff
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(setq inhibit-startup-screen t) ;; Startup screen
|
(setq inhibit-startup-screen t ;; Startup screen
|
||||||
(setq frame-resize-pixelwise t) ;; Use 100% of window space
|
frame-resize-pixelwise t) ;; Use 100% of window space
|
||||||
(defun do-frame-config ()
|
(defun do-frame-config ()
|
||||||
(tool-bar-mode -1) ;; System bar
|
(tool-bar-mode -1) ;; System bar
|
||||||
(set-fringe-mode '(1 . 1)) ;; Minimize arrows before and after wrapped lines by setting fringe to 1px
|
(set-fringe-mode '(1 . 1)) ;; Minimize arrows before and after wrapped lines by setting fringe to 1px
|
||||||
@ -76,7 +76,6 @@
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** System path (macos)
|
** System path (macos)
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
;; Use system path on macos - needed for node
|
|
||||||
(use-package exec-path-from-shell
|
(use-package exec-path-from-shell
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
@ -95,7 +94,7 @@
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Font
|
** Font
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(let ((font "Anonymous Pro Minus:14"))
|
(let ((font "Anonymous Pro Minus:15"))
|
||||||
(set-face-attribute 'default nil :font font)
|
(set-face-attribute 'default nil :font font)
|
||||||
(set-frame-font font nil t))
|
(set-frame-font font nil t))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
@ -123,12 +122,17 @@
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
:ensure t
|
:ensure t
|
||||||
:init (doom-modeline-mode 1))
|
:config
|
||||||
|
(doom-modeline-mode 1))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** All the icons
|
** Icons
|
||||||
|
must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package all-the-icons
|
(use-package all-the-icons
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
|
||||||
|
(use-package nerd-icons
|
||||||
|
:ensure t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Projectile
|
* Projectile
|
||||||
|
@ -11,6 +11,7 @@ export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
|
|||||||
export PATH=$PATH:/Users/lizzy/.spicetify
|
export PATH=$PATH:/Users/lizzy/.spicetify
|
||||||
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin${PATH+:$PATH}";
|
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin${PATH+:$PATH}";
|
||||||
export PATH="/Users/lizzy/.bun/bin/:$PATH"
|
export PATH="/Users/lizzy/.bun/bin/:$PATH"
|
||||||
|
export PATH="/opt/homebrew/opt/erlang@25/bin:$PATH"
|
||||||
|
|
||||||
# asdf
|
# asdf
|
||||||
. $(brew --prefix asdf)/libexec/asdf.sh
|
. $(brew --prefix asdf)/libexec/asdf.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user