diff --git a/init.el b/init.el index e46c29c..71f8cff 100644 --- a/init.el +++ b/init.el @@ -1,18 +1,16 @@ (tool-bar-mode -1) (scroll-bar-mode -1) (menu-bar-mode -1) -(set-frame-parameter nil 'alpha-background 100) +(set-fringe-mode 0) (setq ring-bell-function 'ignore) -(set-face-attribute 'default nil :font "GoMono Nerd Font Mono-10") - +(set-face-attribute 'default nil :font "GoMono Nerd Font Mono-11") (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) (require 'use-package) - (use-package magit :ensure t) (use-package direnv :ensure t) (use-package docker :ensure t) @@ -24,19 +22,27 @@ (use-package latex-preview-pane :ensure t) (use-package eglot) + +(use-package which-key + :ensure t + :config + (which-key-mode)) + (use-package emojify :ensure t :hook (after-init . global-emojify-mode)) + (use-package dashboard - :ensure t - ) + :ensure t) -(use-package acme-theme +(use-package org-roam :ensure t + :custom + (org-roam-directory (file-truename "~/Notes")) :config - (load-theme 'acme t)) - + (org-roam-db-autosync-mode)) +(global-activity-watch-mode) (setq dashboard-display-icons-p t) ; display icons on both GUI and terminal (setq dashboard-icon-type 'nerd-icons) ; use `nerd-icons' package @@ -100,17 +106,3 @@ :background (face-background 'default)) (dashboard-setup-startup-hook) - -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(package-selected-packages - '(acme-theme dashboard emojify latex-preview-pane system-packages gemini-mode nerd-icons rust-mode elpher docker direnv magit))) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - )