Devmodes and things.

This commit is contained in:
Lorenzo Good 2025-12-28 20:44:19 -06:00
parent 1b262f0cf6
commit 6a50ec074c
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
3 changed files with 20 additions and 6 deletions

1
.gitignore vendored
View file

@ -13,3 +13,4 @@ session.*
irony/
.lsp-session*
/projectile-bookmarks.eld
/url

21
init.el
View file

@ -26,7 +26,7 @@
(windmove-default-keybindings 'control)
;; Define killing current buffer using C-x c.
(global-set-key (kbd "C-x c") #'kill-this-buffer)
(global-set-key (kbd "C-x c") #'kill-current-buffer)
;; Some legacy shit.
(setopt sentence-end-double-space nil)
@ -45,6 +45,9 @@ If the new path's directories does not exist, create them."
;; Globally escape.
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)
;; Fix some bs with 2~.
(global-set-key (kbd "S-SPC") 'just-one-space)
(use-package which-key
:ensure t
:config
@ -183,6 +186,9 @@ If the new path's directories does not exist, create them."
(use-package json-mode
:ensure t)
(use-package rust-mode
:ensure t)
(use-package projectile
:ensure t
:config
@ -206,6 +212,12 @@ If the new path's directories does not exist, create them."
(eat-eshell-mode)
(eat-eshell-visual-command-mode))
(use-package elcord
:ensure t
:config
(elcord-mode))
;; Don't change this (or else gg).
(custom-set-variables
;; custom-set-variables was added by Custom.
@ -213,9 +225,10 @@ If the new path's directories does not exist, create them."
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
'(company consult corfu-candidate-overlay corfu-terminal eat evil
gruvbox-theme json-mode lsp-mode magit marginalia
nix-mode projectile vertico yaml-mode)))
'(company consult corfu-candidate-overlay corfu-terminal eat elcord
evil gruvbox-theme json-mode kbd-mode lsp-mode magit
marginalia nix-mode projectile rust-mode vertico
yaml-mode)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View file

@ -1 +1 @@
("~/.emacs.d/" "~/src/personal/servers/")
("~/.emacs.d/" "~/src/personal/servers/" "~/src/personal/dev/" "~/src/personal/lorenzogood.com/" "~/src/midsun/fwxvi/")