Everything works decently (now using EXWM)
This commit is contained in:
parent
270252e5f8
commit
dd4cbbb517
19 changed files with 291 additions and 108 deletions
|
@ -90,7 +90,7 @@
|
|||
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||
direnv
|
||||
;;docker
|
||||
;;editorconfig ; let someone else argue about tabs vs spaces
|
||||
editorconfig ; let someone else argue about tabs vs spaces
|
||||
;;ein ; tame Jupyter notebooks with emacs
|
||||
(eval +overlay) ; run code, run (also, repls)
|
||||
;;gist ; interacting with github gists
|
||||
|
@ -103,7 +103,7 @@
|
|||
;;prodigy ; FIXME managing external services & code builders
|
||||
;;rgb ; creating color strings
|
||||
;;taskrunner ; taskrunner for all your projects
|
||||
;;terraform ; infrastructure as code
|
||||
terraform ; infrastructure as code
|
||||
;;tmux ; an API for interacting with tmux
|
||||
tree-sitter ; syntax and parsing, sitting in a tree...
|
||||
;;upload ; map local to remote projects via ssh/ftp
|
||||
|
@ -117,7 +117,7 @@
|
|||
;;agda ; types of types of types of types...
|
||||
;;beancount ; mind the GAAP
|
||||
;;(cc +lsp) ; C > C++ == 1
|
||||
;;clojure ; java with a lisp
|
||||
clojure ; java with a lisp
|
||||
;;common-lisp ; if you've seen one lisp, you've seen them all
|
||||
;;coq ; proofs-as-programs
|
||||
;;crystal ; ruby at the speed of c
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
;; Confgure `exwm' the X window manager for emacs.
|
||||
(use-package! exwm
|
||||
:config
|
||||
|
||||
(setq exwm-workspace-number 10)
|
||||
;(mapcar (lambda (i) (exwm-workspace-switch-create i) (number-sequence 0 9)))
|
||||
;(exwm-workspace-switch-create 1)
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
|||
([?\s-q] . kill-this-buffer)
|
||||
([?\s-f] . exwm-layout-toggle-fullscreen)
|
||||
([?\s-c] . exwm-input-toggle-keyboard)
|
||||
([?\s-s] . (lambda () (interactive) (start-process-shell-command "screenshot" nil "maim -s -u | xclip -selection clipboard -t image/png -i")))
|
||||
([?\s-d] . (lambda (command)
|
||||
(interactive (list (read-shell-command "$ ")))
|
||||
(start-process-shell-command command nil command)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue