Changes
This commit is contained in:
parent
90772c2c0b
commit
b213bf8fe3
4 changed files with 585 additions and 179 deletions
|
|
@ -58,7 +58,7 @@
|
|||
'(org-odd-levels-only t)
|
||||
'(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))
|
||||
'(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)
|
||||
'(rmail-mail-new-frame t)
|
||||
'(safe-local-variable-values
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@
|
|||
(width . 91)
|
||||
(height . ,jd-frame-height)))
|
||||
|
||||
(use-package modus-operandi-theme :ensure)))
|
||||
(use-package modus-themes :ensure)))
|
||||
|
||||
;; =================================================================
|
||||
;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
|
||||
|
|
@ -975,4 +975,23 @@
|
|||
(use-package 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
|
||||
|
|
|
|||
683
bin/youtubedown
683
bin/youtubedown
File diff suppressed because it is too large
Load diff
|
|
@ -50,7 +50,7 @@
|
|||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[cpp]": {
|
||||
"editor.defaultFormatter": "nuclide.cpp"
|
||||
"editor.defaultFormatter": "ms-vscode.cpptools"
|
||||
},
|
||||
"pyls.BuckFormatOnSave": true,
|
||||
"pyls.formatAlreadyFormattedFilesOnSave": true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue