More stuff
This commit is contained in:
parent
bb2a50872c
commit
dccaef33e1
5 changed files with 36 additions and 11 deletions
|
|
@ -58,7 +58,7 @@
|
|||
'(org-odd-levels-only t)
|
||||
'(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))
|
||||
'(package-selected-packages
|
||||
'(deadgrep protobuf-mode bazel howm python-mode color-theme-sanityinc-solarized monokai-theme rust-mode tide typescript-mode modus-themes tree-sitter flycheck-rust eglot ink-mode prettier-js zig-mode esup gnu-elpa-keyring-update lsp-hack hack-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 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 elm-mode monky color-theme-sanityinc-tomorrow))
|
||||
'(deadgrep solarized-theme gist adaptive-wrap kubel protobuf-mode bazel howm python-mode color-theme-sanityinc-solarized monokai-theme rust-mode tide typescript-mode modus-themes tree-sitter flycheck-rust eglot ink-mode prettier-js zig-mode esup gnu-elpa-keyring-update lsp-hack hack-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 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 elm-mode monky color-theme-sanityinc-tomorrow))
|
||||
'(reb-re-syntax 'string)
|
||||
'(rmail-mail-new-frame t)
|
||||
'(safe-local-variable-values
|
||||
|
|
@ -90,6 +90,7 @@
|
|||
'(truncate-lines t)
|
||||
'(typescript-indent-level 2)
|
||||
'(use-dialog-box nil)
|
||||
'(warning-suppress-types '(((unlock-file))))
|
||||
'(web-mode-code-indent-offset 2)
|
||||
'(web-mode-css-indent-offset 2)
|
||||
'(which-func-mode-global t nil (which-func))
|
||||
|
|
|
|||
|
|
@ -1027,7 +1027,14 @@ Or, uh, Objective C, I guess."
|
|||
(when is-fb-environment
|
||||
(require 'fb-note-publish)))
|
||||
|
||||
(add-hook 'markdown-mode-hook 'my-markdown-mode-hook)
|
||||
(use-package markdown-mode :ensure t
|
||||
:mode "\\.md\\'"
|
||||
:config (add-hook 'markdown-mode-hook 'my-markdown-mode-hook))
|
||||
|
||||
(use-package adaptive-wrap :ensure t
|
||||
:commands adaptive-wrap-prefix-mode
|
||||
:init
|
||||
(add-hook 'markdown-mode-hook 'adaptive-wrap-prefix-mode))
|
||||
|
||||
|
||||
;; =================================================================
|
||||
|
|
|
|||
12
.gitconfig
12
.gitconfig
|
|
@ -3,4 +3,14 @@
|
|||
email = john@d0ty.me
|
||||
|
||||
[include]
|
||||
path = .gitconfig.shared
|
||||
path = .gitconfig.shared
|
||||
[credential "https://github.com"]
|
||||
helper =
|
||||
helper = !/opt/local/bin/gh auth git-credential
|
||||
[credential "https://gist.github.com"]
|
||||
helper =
|
||||
helper = !/opt/local/bin/gh auth git-credential
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[github]
|
||||
user = DeCarabas
|
||||
|
|
|
|||
BIN
bin/buildifier
BIN
bin/buildifier
Binary file not shown.
|
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
"breadcrumbs.enabled": true,
|
||||
"editor.rulers": [
|
||||
80
|
||||
],
|
||||
"editor.rulers": [80],
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnPaste": true,
|
||||
"editor.minimap.enabled": false,
|
||||
|
|
@ -60,7 +58,7 @@
|
|||
}
|
||||
],
|
||||
"terminal.integrated.shell.linux": "/usr/bin/fish",
|
||||
"workbench.colorTheme": "Monokai",
|
||||
"workbench.colorTheme": "Solarized Dark",
|
||||
"editor.suggestSelection": "first",
|
||||
"files.associations": {
|
||||
"*.gadget": "thrift"
|
||||
|
|
@ -77,14 +75,23 @@
|
|||
}
|
||||
],
|
||||
"hg.jumpToNextConflictOnSave": "Jump On Save And Open ISL When Done",
|
||||
"rust-analyzer.checkOnSave.overrideCommand": [
|
||||
"rust-analyzer.checkOnSave.overrideCommand": [
|
||||
"python3",
|
||||
"/Users/doty/lacework/services/bazel/rust/clippyallrust.py",
|
||||
"/Users/doty/lacework/services/bazel/rust/clippyallrust.py"
|
||||
],
|
||||
"bazel.buildifierFixOnFormat": true,
|
||||
"bazel.enableCodeLens": true,
|
||||
"rust-analyzer.cargo.buildScripts.overrideCommand": [
|
||||
"python3",
|
||||
"/Users/doty/lacework/services/bazel/rust/clippyallrust.py",
|
||||
"/Users/doty/lacework/services/bazel/rust/clippyallrust.py"
|
||||
],
|
||||
}
|
||||
"remote.SSH.showLoginTerminal": true,
|
||||
"remote.SSH.remotePlatform": {
|
||||
"coder.doty-dev": "linux",
|
||||
"coder.doty-dev2": "linux"
|
||||
},
|
||||
"java.import.maven.enabled": false,
|
||||
"remote.autoForwardPortsSource": "process",
|
||||
"go.toolsManagement.autoUpdate": true,
|
||||
"bazel.queriesShareServer": true
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue