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