summaryrefslogtreecommitdiff
path: root/.config/.emacs
blob: 7cbf3eaee84e1745f0bb215d597871028a255fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; modes
(menu-bar-mode 0)
(tool-bar-mode 0)
(scroll-bar-mode 0)

;; functional
(set-default 'ring-bell-function 'ignore)

;; visual
(setq inhibit-startup-screen t)
(set-default 'truncate-lines t)
(add-to-list 'default-frame-alist '(font . "Iosevka-14"))
(load-theme 'wombat t)

;; keymaps
(keymap-global-set "C-c c" 'compile)