mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 03:33:03 +03:00
fix(python): fix python crash on doom modeline
This commit is contained in:
parent
33b7ae4036
commit
afcf8ef14c
3 changed files with 7 additions and 8 deletions
|
|
@ -7,6 +7,7 @@
|
|||
'(custom-safe-themes
|
||||
'("aaa4c36ce00e572784d424554dcc9641c82d1155370770e231e10c649b59a074" "c83c095dd01cde64b631fb0fe5980587deec3834dc55144a6e78ff91ebc80b19" "bf387180109d222aee6bb089db48ed38403a1e330c9ec69fe1f52460a8936b66" "e074be1c799b509f52870ee596a5977b519f6d269455b84ed998666cf6fc802a" default))
|
||||
'(dired-recursive-copies 'always)
|
||||
'(doom-modeline-env-enable-python nil)
|
||||
'(js-indent-level 2)
|
||||
'(org-agenda-files
|
||||
'("~/Documents/org-mode/ETU/r&d.org" "~/Documents/org-mode/Personal/misc.org" "~/Documents/org-mode/Job/dig-traject.org" "~/Documents/org-mode/Personal/look-forward.org" "~/Documents/org-mode/ETU/sem-9.org"))
|
||||
|
|
|
|||
|
|
@ -580,8 +580,8 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
|
|||
(setq-default tab-width 4)
|
||||
(setq-default evil-shift-round nil)
|
||||
#+end_src
|
||||
*** Expand region
|
||||
#+begin_src emacs-lisp
|
||||
*** OFF Expand region
|
||||
#+begin_src emacs-lisp :tangle no
|
||||
(use-package expand-region
|
||||
:straight t)
|
||||
|
||||
|
|
@ -1033,6 +1033,8 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
|
|||
#+begin_src emacs-lisp
|
||||
(use-package doom-modeline
|
||||
:straight t
|
||||
:init
|
||||
(setq doom-modeline-env-enable-python nil)
|
||||
:config
|
||||
(doom-modeline-mode 1)
|
||||
(setq doom-modeline-minor-modes nil)
|
||||
|
|
|
|||
|
|
@ -440,12 +440,6 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
|
|||
(setq-default tab-width 4)
|
||||
(setq-default evil-shift-round nil)
|
||||
|
||||
(use-package expand-region
|
||||
:straight t)
|
||||
|
||||
(general-nmap
|
||||
"+" 'er/expand-region)
|
||||
|
||||
(use-package winner-mode
|
||||
:ensure nil
|
||||
:config
|
||||
|
|
@ -827,6 +821,8 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
|
|||
|
||||
(use-package doom-modeline
|
||||
:straight t
|
||||
:init
|
||||
;; (setq doom-modeline-env-enable-python nil)
|
||||
:config
|
||||
(doom-modeline-mode 1)
|
||||
(setq doom-modeline-minor-modes nil)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue