add c mode lsp and change path on geass
This commit is contained in:
parent
1e3bb8fb20
commit
20fdea23a7
@ -94,7 +94,7 @@
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Font
|
** Font
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(let ((font "CozetteVector:15"))
|
(let ((font "CozetteVector-13"))
|
||||||
(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
|
||||||
@ -193,7 +193,10 @@ must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
|
|||||||
(use-package ob-elixir
|
(use-package ob-elixir
|
||||||
:ensure t)
|
:ensure t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** JS
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(require 'ob-js)
|
||||||
|
#+END_SRC
|
||||||
*** Load Languages
|
*** Load Languages
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(org-babel-do-load-languages
|
(org-babel-do-load-languages
|
||||||
@ -201,6 +204,7 @@ must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
|
|||||||
'((lisp . t)
|
'((lisp . t)
|
||||||
(elixir . t)
|
(elixir . t)
|
||||||
(emacs-lisp . t)
|
(emacs-lisp . t)
|
||||||
|
(js . t)
|
||||||
(python . t)))
|
(python . t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** org-bullets
|
** org-bullets
|
||||||
@ -261,6 +265,7 @@ must run ~(all-the-icons-install-fonts)~ and ~(nerd-fonts-install-fonts)~
|
|||||||
(rust-mode . lsp)
|
(rust-mode . lsp)
|
||||||
(java-mode . lsp)
|
(java-mode . lsp)
|
||||||
(php-mode . lsp)
|
(php-mode . lsp)
|
||||||
|
(c-mode . lsp)
|
||||||
(typescript-mode . lsp) ;; npm install -g typescript typescript-language-server
|
(typescript-mode . lsp) ;; npm install -g typescript typescript-language-server
|
||||||
(lsp-mode . lsp-enable-which-key-integration))
|
(lsp-mode . lsp-enable-which-key-integration))
|
||||||
:config (lsp-register-custom-settings
|
:config (lsp-register-custom-settings
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
eval $(thefuck --alias)
|
eval $(thefuck --alias)
|
||||||
|
|
||||||
. /opt/asdf-vm/asdf.sh
|
. /opt/asdf-vm/asdf.sh
|
||||||
|
|
||||||
|
export PATH=$PATH:~/.roswell/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user