forked from doomemacs/doomemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
176 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
;;; -*- no-byte-compile: t; -*- | ||
;;; private-lang/cc/packages.el | ||
|
||
;; (package! clang-format) | ||
;; (package! clang-format+) | ||
(package! clang-format) | ||
(package! clang-format+) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
;;; -*- no-byte-compile: t; -*- | ||
;;; private-lang/protobuf/packages.el | ||
|
||
(package! protobuf-mode) | ||
(package! protobuf-mode :pin "b9483e03c7cfa854c250ad6415b4d9e6f7a9709e") | ||
|
||
(package! company-protobuf | ||
:recipe (:host github | ||
:repo "weidaolee/company-protobuf" | ||
:branch "main") | ||
:pin "676f31c0aa4cc2b4bbf683f66e8be3a82dc60ee1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* Tell flake8 to ignore specific warnings or errors | ||
Open ~.config/flake8~ | ||
#+begin_src conf | ||
[flake8] | ||
ignore = E501 | ||
#+end_src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
;;; private-lang/python/config.el -*- lexical-binding: t; -*- | ||
|
||
;; (add-hook! python-mode | ||
;; (setq-local flycheck-enabled-checkers '(python-pyright python-flake8)) | ||
;; (setq-local flycheck-disabled-checkers '(python-pylint python-mypy)) | ||
|
||
;; ;; Explicitly select Pyright as the checker for Flycheck in Python mode | ||
;; (flycheck-select-checker 'python-pyright) | ||
|
||
;; ;; Disable LSP diagnostics for Python mode specifically | ||
;; (setq-local lsp-diagnostics-provider :none)) | ||
|
||
(after! python | ||
(setq python-prettify-symbols-alist nil)) | ||
|
||
;; (after! lsp-pyright | ||
;; (setq lsp-pyright-typechecking-mode "off")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.