diff --git a/files/.config/dunst/dunstrc b/files/.config/dunst/dunstrc index 9903739..fb8526a 100644 --- a/files/.config/dunst/dunstrc +++ b/files/.config/dunst/dunstrc @@ -29,7 +29,7 @@ # the top and down respectively. # The width can be negative. In this case the actual width is the # screen width minus the width defined in within the geometry option. - geometry = "400x20-15+35" + geometry = "800x80-15+45" # Show how many messages are currently hidden (because of geometry). indicate_hidden = yes @@ -86,7 +86,7 @@ ### Text ### - font = Product Sans 13 + font = Product Sans 20 # The spacing between lines. If the height is smaller than the # font height, it will get raised to the font height. diff --git a/files/.xinitrc b/files/.xinitrc index 03ab9b3..913d834 100755 --- a/files/.xinitrc +++ b/files/.xinitrc @@ -28,7 +28,6 @@ setxkbmap -layout za fcitx -d & nextcloud & dunst & -#picom & nm-applet & # fcitx exports @@ -44,6 +43,11 @@ export PATH=$PATH:$HOME/scripts:$HOME/.cargo/bin:$HOME/.cabal/bin:$HOME/.ghcup/b # university wants me to use intellij, but dwm rightfully hates it export _JAVA_AWT_WM_NONREPARENTING=1 +# 100hz :) +if [ `hostname` == "nazarick" ];then + xrandr --output DP-3 --mode 3440x1440 --rate 99.98 +fi + # wallpaper feh --bg-scale $HOME/data/nextcloud/wallpaper/wallpaper.png #asetroot $HOME/data/nextcloud/wallpaper/animated/current/ -t 100 & diff --git a/files/.zshrc b/files/.zshrc index 5781b9b..5735c55 100644 --- a/files/.zshrc +++ b/files/.zshrc @@ -45,7 +45,7 @@ zstyle ':vcs_info:git:*' formats '|%b ' # ============================== Exports export EDITOR="nvim" -export VISUAL="nvim" +export VISUAL="emacsclient -c -a emacs" export LANG="en_US.UTF-8" # ============================== Aliases diff --git a/files/init.el b/files/init.el index e80e31f..e01a4d6 100644 --- a/files/init.el +++ b/files/init.el @@ -25,7 +25,7 @@ (setq show-paren-style 'paranthesis) ;; Font -(set-face-attribute 'default nil :font "SFMono Nerd Font Mono" :height 100) +(set-face-attribute 'default nil :font "SFMono Nerd Font Mono" :height 140) (add-to-list 'default-frame-alist '(font . "SFMono Nerd Font Mono")) ;; Make ESC quit prompts @@ -275,7 +275,8 @@ (setq treemacs-follow-after-init t treemacs-persist-file (expand-file-name ".cache/treemacs-persist" user-emacs-directory) - treemacs-width 40) + treemacs-width 40 + treemacs-project-follow-cleanup t) (treemacs-follow-mode t)) :bind (:map global-map @@ -379,7 +380,7 @@ (company-mode . company-mode/add-yasnippet)) (use-package yasnippet-snippets - :quelpa ((yasnippet-snippets :fetcher github :repo "hargoniX/yasnippet-snippets"))) + :quelpa ((yasnippet-snippets :fetcher github :repo "CramMK/yasnippet-snippets"))) ;; compiling for lsp (use-package flycheck @@ -408,9 +409,9 @@ ;; Fix math input (use-package unicode-fonts - :ensure t - :hook - (unicode-fonts-setup)) + :ensure t) + +(unicode-fonts-setup) ;; Math Symbols (use-package math-symbol-lists @@ -474,7 +475,7 @@ '(custom-safe-themes '("4a8d4375d90a7051115db94ed40e9abb2c0766e80e228ecad60e06b3b397acab" "a3bdcbd7c991abd07e48ad32f71e6219d55694056c0c15b4144f370175273d16" "e074be1c799b509f52870ee596a5977b519f6d269455b84ed998666cf6fc802a" "8f5a7a9a3c510ef9cbb88e600c0b4c53cdcdb502cfe3eb50040b7e13c6f4e78e" "fce3524887a0994f8b9b047aef9cc4cc017c5a93a5fb1f84d300391fba313743" default)) '(package-selected-packages - '(dashboard org-bullets ein fill-column-indicator lsp-haskell haskell-mode lsp-java auctex rust-mode flycheck yasnippet counsel-projectile projectile company-box company lsp-ivy lsp-ui lsp-mode magit counsel evil-collection evil which-key general all-the-icons doom-themes use-package))) + '(quelpa dashboard org-bullets ein fill-column-indicator lsp-haskell haskell-mode lsp-java auctex rust-mode flycheck yasnippet counsel-projectile projectile company-box company lsp-ivy lsp-ui lsp-mode magit counsel evil-collection evil which-key general all-the-icons doom-themes use-package))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.