This commit is contained in:
John Doty 2021-08-18 20:50:32 -07:00
parent 90772c2c0b
commit b213bf8fe3
4 changed files with 585 additions and 179 deletions

View file

@ -58,7 +58,7 @@
'(org-odd-levels-only t) '(org-odd-levels-only t)
'(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))) '(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))
'(package-selected-packages '(package-selected-packages
'(flycheck-rust eglot prettier-js zig-mode modus-operandi-theme esup gnu-elpa-keyring-update lsp-hack hack-mode rust-mode filladapt lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide elm-mode monky)) '(flycheck-rust eglot ink-mode prettier-js zig-mode modus-operandi-theme esup gnu-elpa-keyring-update lsp-hack hack-mode rust-mode filladapt lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide elm-mode monky))
'(reb-re-syntax 'string) '(reb-re-syntax 'string)
'(rmail-mail-new-frame t) '(rmail-mail-new-frame t)
'(safe-local-variable-values '(safe-local-variable-values

View file

@ -213,7 +213,7 @@
(width . 91) (width . 91)
(height . ,jd-frame-height))) (height . ,jd-frame-height)))
(use-package modus-operandi-theme :ensure))) (use-package modus-themes :ensure)))
;; ================================================================= ;; =================================================================
;; FUN WITH KEY BINDINGS! YAAAAYYY!!! ;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
@ -975,4 +975,23 @@
(use-package pico8-mode (use-package pico8-mode
:mode (("\\.p8\\'" . pico8-mode))) :mode (("\\.p8\\'" . pico8-mode)))
;; ================================================================
;; Ink
;; ================================================================
(defun my-ink-mode-hook ()
"My hook for ink mode."
(flymake-mode)
(flycheck-mode 0)
(turn-off-auto-fill)
(setq truncate-lines nil)
(visual-line-mode))
(use-package ink-mode :ensure t
:mode (("\\.ink\\'" . ink-mode))
:bind (("M-." . ink-follow-link-at-point)
("C-c ! n" . flymake-goto-next-error))
:config
(add-hook 'ink-mode-hook 'my-ink-mode-hook))
;;; init.el ends here ;;; init.el ends here

File diff suppressed because it is too large Load diff

View file

@ -50,7 +50,7 @@
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
}, },
"[cpp]": { "[cpp]": {
"editor.defaultFormatter": "nuclide.cpp" "editor.defaultFormatter": "ms-vscode.cpptools"
}, },
"pyls.BuckFormatOnSave": true, "pyls.BuckFormatOnSave": true,
"pyls.formatAlreadyFormattedFilesOnSave": true, "pyls.formatAlreadyFormattedFilesOnSave": true,