update emacs font and whatnot

This commit is contained in:
Elizabeth Hunt 2023-12-09 19:06:26 -07:00
parent 20fdea23a7
commit ce4ea88467
Signed by: simponic
GPG Key ID: 52B3774857EB24B1
3 changed files with 22 additions and 10 deletions

View File

@ -94,7 +94,7 @@
#+END_SRC #+END_SRC
** Font ** Font
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(let ((font "CozetteVector-13")) (let ((font "JetBrains Mono-8:style=Regular"))
(set-face-attribute 'default nil :font font) (set-face-attribute 'default nil :font font)
(set-frame-font font nil t)) (set-frame-font font nil t))
#+END_SRC #+END_SRC
@ -258,7 +258,6 @@ must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
(use-package lsp-mode (use-package lsp-mode
:ensure t :ensure t
:init :init
;; set prefix for lsp-command-keymap (few alternatives - "C-l", "C-c l")
(setq lsp-keymap-prefix "C-c l") (setq lsp-keymap-prefix "C-c l")
:hook ((python-mode . lsp) ;; pip install python-lsp-server pyls-black pyls-isort pyls-mypy :hook ((python-mode . lsp) ;; pip install python-lsp-server pyls-black pyls-isort pyls-mypy
(elixir-mode . lsp) (elixir-mode . lsp)
@ -266,15 +265,15 @@ must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
(java-mode . lsp) (java-mode . lsp)
(php-mode . lsp) (php-mode . lsp)
(c-mode . lsp) (c-mode . lsp)
(typescript-mode . lsp) ;; npm install -g typescript typescript-language-server (typescript-mode . lsp)
(lsp-mode . lsp-enable-which-key-integration)) (lsp-mode . lsp-enable-which-key-integration))
:config (lsp-register-custom-settings :config (progn
'(("pyls.plugins.pyls_mypy.enabled" t t) (lsp-register-custom-settings
("pyls.plugins.pyls_mypy.live_mode" nil t) '(("pyls.plugins.pyls_mypy.enabled" t t)
("pyls.plugins.pyls_black.enabled" t t) ("pyls.plugins.pyls_mypy.live_mode" nil t)
("pyls.plugins.pyls_isort.enabled" t t))) ("pyls.plugins.pyls_black.enabled" t t)
("pyls.plugins.pyls_isort.enabled" t t))))
:commands lsp) :commands lsp)
#+END_SRC #+END_SRC
** Languages ** Languages
*** Common Lisp *** Common Lisp

View File

@ -0,0 +1,10 @@
export PATH=$PATH:/home/lizzy/myemacs/28.1/bin
export PATH=$PATH:/home/lizzy/.cargo/bin
export PATH=$PATH:/home/lizzy/.local/bin
export PATH=$PATH:/home/lizzy/.roswell/bin
source /etc/profile.d/devkit-env.sh
alias emacs="emacsclient -nw"
. "$HOME/.asdf/asdf.sh"

3
scripts/tunnel Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
ssh -f -N -T -R$1:localhost:42069 tunnel.simponic.xyz