Revert hyprland flake update

Set tokyonight theme for emacs, add pyright support for python
This commit is contained in:
Evie Litherland-Smith 2023-07-25 08:05:33 +01:00
parent 06ddbbdc20
commit e4ebf46f66
3 changed files with 14 additions and 6 deletions

View file

@ -383,11 +383,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1690217417, "lastModified": 1690193620,
"narHash": "sha256-KGFuIk1wj8vH/vOo6Wq8GJNIuC11CsRjIj1fswUanes=", "narHash": "sha256-JGjlbHKUUrf768ZfU2NN/dbkw8pB2FCVYBgC3Rw7jOY=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "f5913135c638997f8c13a52d0760803947ae3889", "rev": "6db3c4ef5ec21f415577a26b0cdf57c98a778eb5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,2 +1,7 @@
;;; ~/.doom.d/config.el ;;; ~/.doom.d/config.el --- Personal Doom Emacs config
(setq doom-font (font-spec :family "Fira Code" :size 14)) ;;; Commentary:
;;; Code:
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 14))
(setq doom-theme 'doom-tokyo-night)
(provide 'config)
;;; config.el ends here

View file

@ -14,6 +14,7 @@
;; Alternatively, press 'gd' (or 'C-c c d') on a module to browse its ;; Alternatively, press 'gd' (or 'C-c c d') on a module to browse its
;; directory (for easy access to its source code). ;; directory (for easy access to its source code).
;;; Code:
(doom! :input (doom! :input
;;chinese ;;chinese
;;japanese ;;japanese
@ -155,7 +156,7 @@
;;php ; perl's insecure younger brother ;;php ; perl's insecure younger brother
;;plantuml ; diagrams for confusing people more ;;plantuml ; diagrams for confusing people more
;;purescript ; javascript, but functional ;;purescript ; javascript, but functional
(python +lsp +tree-sitter) ; beautiful is better than ugly (python +lsp +pyright +tree-sitter) ; beautiful is better than ugly
;;qt ; the 'cutest' gui framework ever ;;qt ; the 'cutest' gui framework ever
;;racket ; a DSL for DSLs ;;racket ; a DSL for DSLs
;;raku ; the artist formerly known as perl6 ;;raku ; the artist formerly known as perl6
@ -190,3 +191,5 @@
:config :config
;;literate ;;literate
(default +bindings +smartparens)) (default +bindings +smartparens))
(provide 'init.el)
;;; init.el ends here