mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
Aly Raffauf
da2cbecbe7
* switch default gtk theme and colors to adw-gtk3 * vscodium: move to adwaita * home/theme: switch qt theme to Adwaita-dark * wlogout: migrate to adwaita and improve look and feel * nixpkgs: remove adwaita overrides * plymouth: remove catppuccin theme * home/chromium: remove catppuccin theme * emacs: remove catppuccin * home/neovim: catppuccin -> ayu * nixos/base: remove catppuccin console colors * home/theme: switch to Bibata cursors * nixos/lightdm: conform to default home theme * home: remove theme overrides * qlogout: fix regression with button:focus keeping entries highlighted when unhovered * format with alejandra * home/waybar: match colors to adwaita * home/fuzzel: match selection colors with theme.colors * mauville: remove overrided vscode theme * aly: use firefox gnome theme * rustboro: decrease cursor size override * nixos/options: remove catppuccin references * home/theme: fixed regression in theme.gtk.hideTitleBar
49 lines
1.5 KiB
EmacsLisp
49 lines
1.5 KiB
EmacsLisp
;(defun on-after-init ()
|
|
; (unless (display-graphic-p (selected-frame))
|
|
; (set-face-background 'default "unspecified-bg" (selected-frame))))
|
|
|
|
;(add-hook 'window-setup-hook 'on-after-init)
|
|
|
|
; 4 spaces > tabs.
|
|
(setq-default indent-tabs-mode nil)
|
|
(setq-default tab-width 4)
|
|
(setq indent-line-function 'insert-tab)
|
|
|
|
; xterm mouse mode
|
|
(xterm-mouse-mode 1)
|
|
|
|
; Enable line numbers
|
|
(global-display-line-numbers-mode 1)
|
|
(global-hl-line-mode t)
|
|
|
|
; Enable mouse scrolling
|
|
(global-set-key (kbd "<mouse-4>") 'previous-line)
|
|
(global-set-key (kbd "<mouse-5>") 'next-line)
|
|
|
|
; Enable tabs
|
|
(tab-bar-mode 1)
|
|
(setq tab-bar-show 1)
|
|
(setq tab-bar-new-tab-choice "*dashboard*")
|
|
|
|
; Enable treemacs
|
|
(add-hook 'emacs-startup-hook 'treemacs)
|
|
(setq treemacs-width 20)
|
|
(treemacs-resize-icons 16) ; Adjust the icon size according to your preference
|
|
(setq treemacs-follow-mode t) ; Enable follow mode
|
|
(setq treemacs-filewatch-mode t) ; Enable file watch mode
|
|
(setq treemacs-fringe-indicator-mode t) ; Enable fringe indicator mode
|
|
(setq treemacs-git-mode 'simple) ; Set git mode to simple
|
|
(setq treemacs-git-integration t) ; Enable git integration
|
|
(setq treemacs-show-hidden-files t) ; Show hidden files
|
|
(setq treemacs-icons-dired-mode t) ; Use icons in dired buffers
|
|
(setq treemacs-set-scope-type 'Tabs)
|
|
|
|
; Enable column 80 line for coding
|
|
(setq-default fill-column 80)
|
|
(add-hook 'prog-mode-hook #'display-fill-column-indicator-mode)
|
|
|
|
(setq org-directory "~/sync/org-roam/")
|
|
(setq org-roam-directory (file-truename "~/sync/org-roam"))
|
|
(setq org-roam-dailies-directory "journal/")
|
|
(org-roam-db-autosync-mode)
|