Skip to content

Commit

Permalink
Updates, disable company-lsp, format-all for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Costan committed Apr 24, 2021
1 parent e3d4214 commit 184ba9f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 11 deletions.
7 changes: 5 additions & 2 deletions TODOs.org
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
*** https://github.com/raxod502/straight.el
** Tasks
*** TODO Vanilla Emacs: monthly update
SCHEDULED: <2021-02-02 Tue +1m>
SCHEDULED: <2021-05-02 Sun +1m>
:PROPERTIES:
:LAST_REPEAT: [2021-01-04 Mon 23:52]
:LAST_REPEAT: [2021-04-03 Sat 10:34]
:END:
- State "DONE" from "TODO" [2021-04-03 Sat 10:34]
- State "DONE" from "TODO" [2021-03-15 Mon 10:14]
- State "DONE" from "TODO" [2021-02-14 Sun 20:18]
- State "DONE" from "TODO" [2021-01-04 Mon 23:52]
- State "DONE" from "TODO" [2020-12-03 Thu 15:27]
- State "DONE" from "TODO" [2020-11-06 Fri 21:22]
Expand Down
10 changes: 6 additions & 4 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
(tab-width 4)
(inhibit-splash-screen t)
(inhibit-startup-message t)
(visible-bell t)
(menu-bar-mode nil)
(tooltip-mode nil)
(scroll-bar-mode nil)
Expand Down Expand Up @@ -366,6 +367,7 @@
"oh" '(org-preview-html-mode :wk "html preview")
"ou" '(org-move-subtree-up :wk "move up")
"od" '(org-move-subtree-down :wk "move down")
"ox" '(org-ctrl-c-ctrl-c :wk "execute")
;; Project
"p" '(nil :wk "projects")
"pf" '(helm-projectile-find-file :wk "find files")
Expand Down Expand Up @@ -593,10 +595,10 @@
:commands lsp-ui-mode
:config
(setq lsp-ui-doc-position 'top))
(use-package company-lsp
:commands company-lsp
:config
(setq company-lsp-enable-snippet t))
;; (use-package company-lsp
;; :commands company-lsp
;; :config
;; (setq company-lsp-enable-snippet t))
(use-package helm-lsp :commands helm-lsp-workspace-symbol)
(use-package lsp-treemacs :commands lsp-treemacs-errors-list)

Expand Down
10 changes: 5 additions & 5 deletions langs/all.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
;;; Commentary:
;;; Code:

(use-package format-all
:ensure-system-package (prettier)
:ensure-system-package (tidy)
:ensure-system-package (black . "pip install black")
:ensure-system-package (rufo . "gem install rufo"))
;; (use-package format-all
;; :ensure-system-package (prettier)
;; :ensure-system-package (tidy)
;; :ensure-system-package (black . "pip install black")
;; :ensure-system-package (rufo . "gem install rufo"))

(general-nmap ", t"
(general-predicate-dispatch nil
Expand Down
11 changes: 11 additions & 0 deletions samples.org
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,14 @@ Memory: 5773MiB / 31983MiB

[?25h[?7h
#+end_example

** change faces of a src block
#+begin_src elisp
(setq org-src-block-faces '(("emacs-lisp" (:background "#000000"))

("python" (:background "#E5FFB8"))))
#+end_src

#+RESULTS:
| emacs-lisp | (:background #000000) |
| python | (:background #E5FFB8) |

0 comments on commit 184ba9f

Please sign in to comment.