Skip to content

Commit

Permalink
Ligature and parinfer issues now gone
Browse files Browse the repository at this point in the history
  • Loading branch information
inscapist committed Dec 11, 2020
1 parent 8a84de9 commit dd437f6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .doom.d/+bindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:nv "rb" #'revert-bufferm
:nv "rc" #'lsp-workspace-restart)

;; Easier navigation
;; Easier navigation
(map! :ne "C-h" #'evil-window-left
:ne "C-l" #'evil-window-right
:ne "C-j" #'evil-window-down
Expand Down Expand Up @@ -63,7 +63,7 @@
"tt" #'origami-mode)
(map! :after origami
(:map origami-mode-map
[tab] #'origami-toggle-node))
[tab] #'origami-toggle-node))

;; Easier window split
(map! :leader
Expand Down
3 changes: 3 additions & 0 deletions .doom.d/+langs.el
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@

(setq-hook! 'web-mode-hook +format-with 'prettier)
(setq-hook! 'html-mode-hook +format-with 'prettier)

(after! rustic
(setq rustic-lsp-server 'rls))
15 changes: 10 additions & 5 deletions .doom.d/+ui.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,26 @@
;; To disable font smoothing, run
;; defaults write org.gnu.Emacs AppleFontSmoothing -int 0
;;
(setq felix/default-font "Iosevka Maya"
felix/default-font-size 13
(setq felix/default-font "Victor Mono"
felix/default-font-size 12
felix/default-font-weight 'normal
felix/ui-font "Unica One"
felix/ui-font-size 12
felix/ui-font-weight 'bold
felix/mode-line-height 0.9)
felix/mode-line-height 0.95)

(setq doom-theme 'doom-miramare
doom-themes-enable-bold nil
doom-themes-enable-bold t
doom-themes-enable-italic t
doom-font (font-spec :family felix/default-font :size felix/default-font-size :weight felix/default-font-weight)
doom-variable-pitch-font (font-spec :family felix/ui-font :size felix/ui-font-size :weight felix/ui-font-weight)
all-the-icons-scale-factor 0.9)

;; configure nord-theme
;; (after! nord-theme
;; (setq nord-uniform-mode-lines nil
;; nord-region-highlight "frost"))


;; disable shortmenu
(remove-hook '+doom-dashboard-functions #'doom-dashboard-widget-shortmenu)
Expand All @@ -35,7 +40,7 @@

(custom-set-faces!
`(font-lock-comment-face :slant italic)
`(font-lock-keyword-face :slant italic)
`(font-lock-keyword-face :slant normal)
`(treemacs-root-face :family ,felix/ui-font :size ,felix/ui-font-size :weight ,felix/ui-font-weight)

;; https://discordapp.com/channels/406534637242810369/603399769015975996/765837027152363550
Expand Down
8 changes: 4 additions & 4 deletions .doom.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
;;vi-tilde-fringe ; fringe tildes to mark beyond EOB
;;window-select ; visually switch windows
workspaces ; tab emulation, persistence & separate workspaces
zen ; distraction-free coding or writing
;;zen ; distraction-free coding or writing

:editor
(evil +everywhere); come to the dark side, we have cookies
Expand All @@ -59,7 +59,7 @@
;;lispy ; vim for lisp, for people who don't like vim
;;multiple-cursors ; editing in many places at once
;;objed ; text object editing for the innocent
;;parinfer ; turn lisp into python, sort of
parinfer ; turn lisp into python, sort of
;;rotate-text ; cycle region at point between text candidates
snippets ; my elves. They type so I don't have to
;;word-wrap ; soft wrapping with language-aware indent
Expand Down Expand Up @@ -156,7 +156,7 @@
;;rest ; Emacs as a REST client
;;rst ; ReST in peace
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
;;scala ; java, but good
;;scheme ; a fully conniving family of lisps
sh ; she sells {ba,z,fi}sh shells on the C xor
Expand All @@ -176,7 +176,7 @@
;;calendar
;;irc ; how neckbeards socialize
(rss +org) ; emacs as an RSS reader
;;twitter ; twitter client https://twitter.com/vnought
twitter ; twitter client https://twitter.com/vnought

:config
;;literate
Expand Down
7 changes: 5 additions & 2 deletions .doom.d/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@
(package! origami)
(package! graphviz-dot-mode)

;; Themes
;; (package! kaolin-themes)
;; Use latest packages
(package! doom-themes :recipe (:branch "master"))
(package! format-all :recipe (:branch "master"))
(package! nord-theme :recipe
(:host github
:repo "arcticicestudio/nord-emacs"
:branch "develop"))

0 comments on commit dd437f6

Please sign in to comment.