Skip to content

Commit

Permalink
emacs: add rust, change theme & font
Browse files Browse the repository at this point in the history
  • Loading branch information
niclas committed Apr 25, 2024
1 parent 59278da commit d722131
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .emacs.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@
(use-package lua-mode
:mode "\\.lua\\'")

;; Rust
(use-package rust-mode
:mode "\\.rs\\'")

;; Zig
(use-package zig-mode
:mode "\\.zig\\'")
Expand All @@ -104,15 +108,15 @@
(put 'upcase-region 'disabled nil)

;;; General Appearence
(use-package mbo70s-theme
:init (load-theme 'mbo70s t))
(use-package sublime-themes
:init (load-theme 'boron t))

(menu-bar-mode -1)
(scroll-bar-mode -1)
(tool-bar-mode -1)

(set-face-attribute 'default nil
:family "Go Mono"
:family "IBM Plex Mono"
:height 180)

(setq inhibit-startup-screen t)
Expand Down

0 comments on commit d722131

Please sign in to comment.