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:
Anthony Rodriguez 2024-06-26 18:21:53 +02:00
parent 37a012479c
commit 7015684b5d
4 changed files with 30 additions and 14 deletions

View file

@ -14,6 +14,7 @@ packages:
- com.getpostman.Postman
- com.spotify.Client
- one.ablaze.floorp
- dev.vencord.Vesktop
copr:
- atim/starship
arch:

View file

@ -1 +1,2 @@
abbr --add code codium
abbr -a -- code codium
abbr -a -- cd z

View file

@ -225,15 +225,29 @@ I use org-superstar-mode, as it makes headlines and bullets look really nice.
(use-package lsp-mode
:hook (prog-mode . my-lsp-mode-setup)
(lsp-mode . lsp-enable-which-key-integration)
: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)
#+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
#+begin_src emacs-lisp
(use-package company)
(use-package company
:config
(setq company-idle-delay 0))
#+end_src
*** 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
("C-c C-e" . yas-expand)))
#+end_src
*** Magit
Magit is a git client in Emacs.
#+begin_src emacs-lisp
(use-package magit)
#+end_src
*** Languages
**** Rust
@ -258,13 +277,12 @@ I use org-superstar-mode, as it makes headlines and bullets look really nice.
**** Typescript
#+begin_src emacs-lisp
(use-package typescript-mode)
(use-package typescript-mode
:hook (typescript-mode . lsp)
:config
(setq typescript-indent-level 2))
#+end_src
***** Biome
Biome is a formatter for Typescript, and integrates with LSP.
#+begin_src emacs-lisp
(use-package lsp-biome
:quelpa (lsp-biome :fetcher github :repo "cxa/lsp-biome"))
#+begin_src sh
npm install -g typescript-language-server
#+end_src

View file

@ -22,9 +22,5 @@
"files.trimFinalNewlines": true,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
"editor.wordWrap": "wordWrapColumn",
"ltex.additionalRules.motherTongue": "fr",
"ltex.language": "fr",
"git.suggestSmartCommit": false,
"sync.gist": "6d8559a01164b003d08f3c0bbc6cc664",
"dart.flutterSdkPath": "/home/nezia/.flutter",
}