Skip to content

Commit

Permalink
Theme updates and moving to nerd-icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tmonck committed Feb 11, 2024
1 parent ddc25f6 commit cccc416
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
56 changes: 28 additions & 28 deletions doom.org
Original file line number Diff line number Diff line change
Expand Up @@ -404,15 +404,16 @@ It's nice to know who you are especially for git commits and such. It's recommen
;; doom-variable-pitch-font (font-spec :family "sans" :size 13))
;; (setq doom-font (font-spec :family "JetBrains Mono")
;; doom-variable-pitch-font (font-spec :family "DejaVu Sans"))
(use-package! nerd-icons)

; (use-package! nerd-icons)
;; (use-package! treemacs-nerd-icons
;; :config
;; (treemacs-load-theme "nerd-icons"))
;; (setq doom-themes-treemacs-theme "nerd-icons")
;; (setq doom-themes-treemacs-theme "Default")
#+end_src

#+begin_src emacs-lisp :tangle lab/packages.el
(package! nerd-icons)
(package! nerd-icons-dired)
(package! treemacs-nerd-icons)
(package! treemacs-icons-dired)
#+end_src
** Theme
Let's make the theme look like we want and we like it dark!

Expand All @@ -421,43 +422,42 @@ Let's make the theme look like we want and we like it dark!
;; There are two ways to load a theme. Both assume the theme is installed and
;; available. You can either set `doom-theme' or manually load a theme with the
;; `load-theme' function. The is the default: doom-one
;; (setq doom-theme 'doom-one)
;;(setq doom-theme 'doom-acario-dark)
(setq doom-theme 'doom-material-dark)
(setq doom-theme 'doom-one)
;; (setq doom-theme 'doom-acario-dark)
;; (setq doom-theme 'doom-material-dark)
;; (setq doom-theme 'doom-ir-black)
;; (setq doom-theme 'doom-moonlight)
;; (setq doom-theme 'doom-challenger-deep)
;; (setq doom-theme 'doom-dracula)
;; (setq doom-theme 'doom-oksolar-dark)
;; (setq doom-theme 'doom-badger)
;; (setq doom-theme 'doom-Iosvkem)
#+END_SRC
*** treemacs
# Since we use treemacs lets add some icon flare here
# #+begin_src emacs-lisp :tangle lab/packages.el
# (package! treemacs-all-the-icons)
# #+end_src

# #+begin_src emacs-lisp
# (use-package! treemacs-all-the-icons )
# (setq doom-themes-treemacs-theme "Default")
# #+end_src
Since we use treemacs lets add some icon flare here
#+begin_src emacs-lisp :tangle lab/packages.el
;; (package! treemacs-all-the-icons)
#+end_src

# #+begin_src emacs-lisp :tangle lab/packages.el
# (package! treemacs-icons-dired)
# #+end_src
#+begin_src emacs-lisp
;; Treemacs
(use-package! lsp-treemacs :after treemacs) ;; this needs to be setup before treemacs-nerd-icons other wise it messes up the icons

# #+begin_src emacs-lisp
# (use-package! treemacs-icons-dired)
(use-package! treemacs-nerd-icons
:config
(treemacs-load-theme "nerd-icons"))

# (after! dired
# (treemacs-icons-dired-enable-once)
# )
# #+end_src
(setq treemacs-width 43)
#+end_src

** Fullscreen
I like to have my emacs open to full screen on startup.

#+BEGIN_SRC emacs-lisp
(if (eq initial-window-system 'x) ; if started by emacs command or desktop file
(toggle-frame-maximized)
(toggle-frame-fullscreen))
(toggle-frame-maximized)
)
#+END_SRC
** Opacity
For some reason I like my editor to be somewhat see through so let's adjust the opacity.
Expand Down
2 changes: 1 addition & 1 deletion setupScripts/mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ brew install bash-completion@2

brew install git

curl https://raw.githubusercontent.com/lyze/posh-git-sh/blob/master/git-prompt.sh > ~/git-prompt.sh
curl https://raw.githubusercontent.com/lyze/posh-git-sh/master/git-prompt.sh > ~/git-prompt.sh

brew install node # This will install npm as well

Expand Down
6 changes: 3 additions & 3 deletions setupScripts/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sudo apt install git

curl https://raw.githubusercontent.com/lyze/posh-git-sh/blob/master/git-prompt.sh > ~/git-prompt.sh
curl https://raw.githubusercontent.com/lyze/posh-git-sh/master/git-prompt.sh > ~/git-prompt.sh

wget https://dot.net/v1/dotnet-install.sh -P ./bin
export PATH=$PATH:$PWD/bin
Expand Down Expand Up @@ -76,11 +76,11 @@ curl https://raw.githubusercontent.com/nagygergo/jetbrains-toolbox-install/maste

./jetbrains-toolbox.sh

sudo apt-get install -y podman

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube

sudo apt-get install -y podman

sudo snap install slack --classic

sudo snap install discord

0 comments on commit cccc416

Please sign in to comment.