Update .chezmoidata/packages.yaml
Update .config/fish/conf.d/abbreviations.fish Update .emacs.d/config.org Update vscodium/settings.json
This commit is contained in:
parent
37a012479c
commit
7015684b5d
4 changed files with 30 additions and 14 deletions
|
@ -14,6 +14,7 @@ packages:
|
||||||
- com.getpostman.Postman
|
- com.getpostman.Postman
|
||||||
- com.spotify.Client
|
- com.spotify.Client
|
||||||
- one.ablaze.floorp
|
- one.ablaze.floorp
|
||||||
|
- dev.vencord.Vesktop
|
||||||
copr:
|
copr:
|
||||||
- atim/starship
|
- atim/starship
|
||||||
arch:
|
arch:
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
abbr --add code codium
|
abbr -a -- code codium
|
||||||
|
abbr -a -- cd z
|
||||||
|
|
|
@ -225,15 +225,29 @@ I use org-superstar-mode, as it makes headlines and bullets look really nice.
|
||||||
|
|
||||||
(use-package lsp-mode
|
(use-package lsp-mode
|
||||||
:hook (prog-mode . my-lsp-mode-setup)
|
:hook (prog-mode . my-lsp-mode-setup)
|
||||||
|
(lsp-mode . lsp-enable-which-key-integration)
|
||||||
:init
|
:init
|
||||||
(setq lsp-keymap-prefix "C-c l"))
|
(setq lsp-keymap-prefix "C-c l")
|
||||||
|
(setq read-process-output-max (* 1024 1024))
|
||||||
|
(setq gc-cons-threshold 100000000))
|
||||||
|
|
||||||
(use-package lsp-ui)
|
(use-package lsp-ui)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
*** Projectile
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package projectile
|
||||||
|
:config
|
||||||
|
(projectile-mode +1)
|
||||||
|
(setq projectile-project-search-path '("~/projects"))
|
||||||
|
:bind
|
||||||
|
("C-c p" . 'projectile-command-map))
|
||||||
|
#+end_src
|
||||||
*** Autocompletion
|
*** Autocompletion
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package company)
|
(use-package company
|
||||||
|
:config
|
||||||
|
(setq company-idle-delay 0))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Snippets
|
*** Snippets
|
||||||
|
@ -245,7 +259,12 @@ I use org-superstar-mode, as it makes headlines and bullets look really nice.
|
||||||
:bind (:map yas-minor-mode-map
|
:bind (:map yas-minor-mode-map
|
||||||
("C-c C-e" . yas-expand)))
|
("C-c C-e" . yas-expand)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
*** Magit
|
||||||
|
|
||||||
|
Magit is a git client in Emacs.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package magit)
|
||||||
|
#+end_src
|
||||||
*** Languages
|
*** Languages
|
||||||
|
|
||||||
**** Rust
|
**** Rust
|
||||||
|
@ -258,13 +277,12 @@ I use org-superstar-mode, as it makes headlines and bullets look really nice.
|
||||||
|
|
||||||
**** Typescript
|
**** Typescript
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package typescript-mode)
|
(use-package typescript-mode
|
||||||
|
:hook (typescript-mode . lsp)
|
||||||
|
:config
|
||||||
|
(setq typescript-indent-level 2))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
***** Biome
|
#+begin_src sh
|
||||||
Biome is a formatter for Typescript, and integrates with LSP.
|
npm install -g typescript-language-server
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package lsp-biome
|
|
||||||
:quelpa (lsp-biome :fetcher github :repo "cxa/lsp-biome"))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
|
@ -22,9 +22,5 @@
|
||||||
"files.trimFinalNewlines": true,
|
"files.trimFinalNewlines": true,
|
||||||
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
|
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
|
||||||
"editor.wordWrap": "wordWrapColumn",
|
"editor.wordWrap": "wordWrapColumn",
|
||||||
"ltex.additionalRules.motherTongue": "fr",
|
|
||||||
"ltex.language": "fr",
|
|
||||||
"git.suggestSmartCommit": false,
|
"git.suggestSmartCommit": false,
|
||||||
"sync.gist": "6d8559a01164b003d08f3c0bbc6cc664",
|
|
||||||
"dart.flutterSdkPath": "/home/nezia/.flutter",
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue