mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-14 16:20:52 -05:00
Compare commits
No commits in common. "5509627012659513027f933db16aa0ef64f8f4db" and "96ebd7508f82211391de6708659672c9b6b52bb2" have entirely different histories.
5509627012
...
96ebd7508f
3 changed files with 16 additions and 32 deletions
5
bashrc
5
bashrc
|
@ -14,4 +14,7 @@ alias kssh="/usr/bin/kitty +kitten ssh"
|
||||||
|
|
||||||
neofetch
|
neofetch
|
||||||
|
|
||||||
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
|
|
||||||
|
# BEGIN_KITTY_SHELL_INTEGRATION
|
||||||
|
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi
|
||||||
|
# END_KITTY_SHELL_INTEGRATION
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
font_family Hack
|
font_family Hack
|
||||||
font_size 10
|
font_size 12
|
||||||
cursor_shape block
|
cursor_shape block
|
||||||
cursor_stop_blinking_after 10
|
shell_integration no-cursor
|
||||||
shell_integration enabled no-cursor
|
|
||||||
enable_audio_bell no
|
enable_audio_bell no
|
||||||
#background_opacity 0.7
|
#background_opacity 0.9
|
||||||
window_padding_width 20
|
window_padding_width 20
|
||||||
#background #202020
|
#background #202020
|
||||||
include everforest-dark.conf
|
include everforest-dark.conf
|
||||||
|
|
|
@ -117,20 +117,16 @@
|
||||||
:custom (straight-use-package-by-default t))
|
:custom (straight-use-package-by-default t))
|
||||||
|
|
||||||
;; Theme
|
;; Theme
|
||||||
|
|
||||||
(setq custom-safe-themes t)
|
(setq custom-safe-themes t)
|
||||||
|
|
||||||
;; (use-package everforest
|
;; (use-package atom-one-dark-theme
|
||||||
;; :straight (:type git :repo "https://git.sr.ht/~theorytoe/everforest-theme")
|
|
||||||
;; :config
|
;; :config
|
||||||
;; (load-theme 'everforest-hard-dark t))
|
;; (load-theme 'atom-one-dark t))
|
||||||
|
|
||||||
;; (use-package gruvbox-theme
|
(use-package everforest-hard-dark-theme
|
||||||
;; :config
|
:straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme")
|
||||||
;; (load-theme 'gruvbox-dark-soft t))
|
:config
|
||||||
|
(load-theme 'everforest-hard-dark t))
|
||||||
(add-to-list 'custom-theme-load-path "~/.cache/emacs/custom/everforest-theme")
|
|
||||||
(load-theme 'everforest-hard-dark t)
|
|
||||||
|
|
||||||
;; Help distinguish work buffers from others like sidebars and terminal
|
;; Help distinguish work buffers from others like sidebars and terminal
|
||||||
(use-package solaire-mode
|
(use-package solaire-mode
|
||||||
|
@ -247,7 +243,6 @@
|
||||||
:hook
|
:hook
|
||||||
((c-mode . lsp)
|
((c-mode . lsp)
|
||||||
(c++-mode . lsp)
|
(c++-mode . lsp)
|
||||||
(go-mode . lsp)
|
|
||||||
(java-mode . lsp)
|
(java-mode . lsp)
|
||||||
(js-mode . lsp)
|
(js-mode . lsp)
|
||||||
(latex-mode . lsp)
|
(latex-mode . lsp)
|
||||||
|
@ -317,9 +312,7 @@
|
||||||
("C-n" . company-select-next)
|
("C-n" . company-select-next)
|
||||||
("C-p" . company-select-previous)))
|
("C-p" . company-select-previous)))
|
||||||
|
|
||||||
;;; Languages/Tools
|
;;; Languages
|
||||||
|
|
||||||
;; Highlighting/Formatting
|
|
||||||
|
|
||||||
(use-package apheleia
|
(use-package apheleia
|
||||||
:init
|
:init
|
||||||
|
@ -344,13 +337,7 @@
|
||||||
|
|
||||||
;(use-package modern-cpp-font-lock
|
;(use-package modern-cpp-font-lock
|
||||||
; :config
|
; :config
|
||||||
; (modern-c++-font-lock-global-mode))
|
; (modern-c++-font-lock-global-mode))
|
||||||
|
|
||||||
;; Golang
|
|
||||||
|
|
||||||
(use-package go-mode
|
|
||||||
:config
|
|
||||||
(add-hook 'before-save-hook #'lsp-organize-imports))
|
|
||||||
|
|
||||||
;; Java
|
;; Java
|
||||||
|
|
||||||
|
@ -429,11 +416,6 @@
|
||||||
|
|
||||||
(setq lsp-tex-server 'digestif)
|
(setq lsp-tex-server 'digestif)
|
||||||
|
|
||||||
|
|
||||||
;; Protocol Buffers
|
|
||||||
|
|
||||||
(use-package protobuf-mode)
|
|
||||||
|
|
||||||
;; Python
|
;; Python
|
||||||
|
|
||||||
(setq dap-python-debugger 'debugpy)
|
(setq dap-python-debugger 'debugpy)
|
||||||
|
|
Loading…
Reference in a new issue