1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-14 16:59:27 -05:00

28 Oct 2022 01:43:56

This commit is contained in:
Jack Foltz 2022-10-28 01:43:56 -04:00
parent 92bf8b2441
commit 39aa106fee
No known key found for this signature in database
GPG Key ID: 79C872C088D157D1
4 changed files with 1065 additions and 6 deletions

6
.doom.d/abbrevs.el Normal file
View File

@ -0,0 +1,6 @@
;;-*-coding: utf-8;-*-
(define-abbrev-table 'emacs-lisp-mode-abbrev-table
'(
("blah" "blaz" nil :count 1)
))

1040
.doom.d/config.el Normal file

File diff suppressed because it is too large Load Diff

View File

@ -202,6 +202,7 @@ returned by `request`."
** Magic Vars
#+BEGIN_SRC elisp
(defun $file () buffer-file-name)
(defun $ext () (f-ext ($file)))
(defun $cwd (&optional dir)
(if dir
dir
@ -1226,15 +1227,15 @@ Setup: run =M-x dap-go-setup=
#+END_SRC
#+BEGIN_SRC elisp
(defun my/lsp-root (lsp--calculate-root session file)
(defun my/lsp-find-root (lsp--find-root-interactively &rest args)
(or
(and (ts/repo/p file)
(pcase (f-ext file t)
(".rs" (my/rust/workspace-root file))
(and (ts/repo/p)
(pcase (f-ext ($file) t)
(".rs" (my/rust/workspace-root))
(_ nil)))
(lsp--calculate-root session file)))
(apply lsp--find-root-interactively args)))
((advice-add 'lsp--calculate-root :around #'my/lsp-root)
(advice-add 'lsp--find-root-interactively :around #'my/lsp-find-root)
#+END_SRC
** Counsel Search

12
.doom.d/custom.el Normal file
View File

@ -0,0 +1,12 @@
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(safe-local-variable-values '((org-src-preserve-indentation . t))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)