summaryrefslogtreecommitdiff
path: root/.config/.emacs
blob: 9e9164c7eecc3a4d95b1e60a2c79a7325ac3dba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;; modes
(menu-bar-mode 0)
(tool-bar-mode 0)
(scroll-bar-mode 0)

;; functional
(set-default 'ring-bell-function 'ignore)
(setq c-basic-offset 8)
(setq indent-line-function 'insert-tab)

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

;; visual
(setq inhibit-startup-screen t)
(set-default 'truncate-lines t)
(add-to-list 'default-frame-alist '(font . "FantasqueSansM Nerd Font-16"))
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'kanagawa t)

(custom-set-variables
 '(package-selected-packages '(autothemer)))
(custom-set-faces
 )