diff options
| author | benj <benj@rse8.com> | 2024-03-24 15:10:01 -0700 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2024-03-24 15:10:01 -0700 |
| commit | 5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539 (patch) | |
| tree | 630b5d123ddc19dc0c254f17dbfcfb4016c0fdfc | |
| parent | 71ac0862312ee09948fb495bb89edab3328cdcd5 (diff) | |
| download | emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar.gz emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar.bz2 emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar.lz emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar.xz emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.tar.zst emacs-5731cc2a949d7d5d3a4ec33fd9ea4b95afd4e539.zip | |
add restclient, rustic && update .gitignore
Diffstat (limited to '')
| -rw-r--r-- | .gitignore | 37 | ||||
| -rw-r--r-- | init.el | 14 |
2 files changed, 22 insertions, 29 deletions
@@ -1,29 +1,30 @@ +.cache +.dap-breakpoints +.extension +.lsp-session* +.mc-* +async-bytecomp.log +auto-save-list* backups +bookmarks +custom.el +derby* +eln-cache/ elpa +emojis ensime history -places -recentf -url ido* -.mc-* -derby* -auto-save-list* metastore_db* +multisession/ +network-security.data +pcache +places projectile-bookmarks.eld projectile.cache +projects +recentf rust-playground/ -.cache -.extension -emojis -.lsp-session* -.dap-breakpoints -network-security.data transient/ -pcache -eln-cache/ -projects -bookmarks tree-sitter -custom.el -async-bytecomp.log
\ No newline at end of file +url
\ No newline at end of file @@ -268,19 +268,11 @@ "* %?" :empty-lines 0)))) -(use-package rustic +(use-package restclient :ensure t) -;; (use-package rust-mode -;; :ensure t -;; :bind ((:map rust-mode-map -;; ("C-c C-c C-c" . 'rust-compile) -;; ("C-c C-c C-k" . 'rust-check) -;; ("C-c C-c C-t" . 'rust-test) -;; ("C-c C-c C-r" . 'rust-run))) -;; :init -;; (setq rust-format-on-save t) -;; :hook (rust-mode . lsp)) +(use-package rustic + :ensure t) (use-package solarized-theme :ensure t |
