diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-08-29 13:33:45 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-08-29 13:33:45 +0500 |
commit | 2789e7aef1a2b44188b35d90c9ea87d594877d77 (patch) | |
tree | 92405be71ebbd2e5649422d56a472bf95bfebdb3 /.config/.emacs | |
parent | 5c0256800f0ef28701463720db72615c07e5f86e (diff) |
Diffstat (limited to '.config/.emacs')
-rw-r--r-- | .config/.emacs | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/.config/.emacs b/.config/.emacs index 7cbf3ea..9e9164c 100644 --- a/.config/.emacs +++ b/.config/.emacs @@ -5,12 +5,20 @@ ;; 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 . "Iosevka-14")) -(load-theme 'wombat 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) -;; keymaps -(keymap-global-set "C-c c" 'compile) +(custom-set-variables + '(package-selected-packages '(autothemer))) +(custom-set-faces + ) |