Small maintenance changes
This commit is contained in:
parent
fb95d1e809
commit
ac72437585
7 changed files with 15 additions and 12 deletions
|
@ -207,7 +207,7 @@ $env.config = {
|
|||
history: {
|
||||
max_size: 100_000 # Session has to be reloaded for this to take effect
|
||||
sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file
|
||||
file_format: "plaintext" # "sqlite" or "plaintext"
|
||||
file_format: "sqlite" # "sqlite" or "plaintext"
|
||||
isolation: false # only available with sqlite file_format. true enables history isolation, false disables it. true will allow the history to be isolated to the current session using up/down arrows. false will allow the history to be shared across all sessions.
|
||||
}
|
||||
|
||||
|
|
|
@ -120,13 +120,11 @@
|
|||
;; (add-hook 'post-command-hook #'paw64-post-command-hook nil t)
|
||||
;; (electric-indent-local-mode -1)))
|
||||
|
||||
(use-package! arm-mode :init :config)
|
||||
(use-package! arm-mode)
|
||||
|
||||
(use-package! json-navigator :init :config)
|
||||
(use-package! json-navigator)
|
||||
|
||||
(use-package! ron-mode :init :config)
|
||||
|
||||
(use-package! typst-mode :init :config)
|
||||
(use-package! ron-mode)
|
||||
|
||||
(map! :map dap-mode-map
|
||||
:leader
|
||||
|
@ -158,3 +156,8 @@
|
|||
:desc "dap breakpoint condition" "c" #'dap-breakpoint-condition
|
||||
:desc "dap breakpoint hit count" "h" #'dap-breakpoint-hit-condition
|
||||
:desc "dap breakpoint log message" "l" #'dap-breakpoint-log-message)
|
||||
|
||||
(use-package! typst-mode
|
||||
:mode "\\.typ$")
|
||||
|
||||
(use-package! nasm-mode)
|
||||
|
|
|
@ -145,7 +145,7 @@
|
|||
json ; At least it ain't XML
|
||||
(java +lsp) ; the poster child for carpal tunnel syndrome
|
||||
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
||||
julia ; a better, faster MATLAB
|
||||
(julia +lsp) ; a better, faster MATLAB
|
||||
;;kotlin ; a better, slicker Java(Script)
|
||||
latex ; writing papers in Emacs has never been so fun
|
||||
;;lean ; for folks with too much to prove
|
||||
|
|
|
@ -73,13 +73,12 @@
|
|||
;; :recipe (:host github :repo "svjson/paw64-mode"))
|
||||
(package! arm-mode
|
||||
:recipe (:host github :repo "charje/arm-mode"))
|
||||
;; (package! nasm-mode)
|
||||
|
||||
|
||||
(package! org-modern)
|
||||
(package! nasm-mode)
|
||||
|
||||
(package! json-navigator)
|
||||
|
||||
(package! polymode)
|
||||
|
||||
(package! typst-mode
|
||||
:recipe (:host github :repo "Ziqi-Yang/typst-mode.el"))
|
||||
|
|
2
.emacs.d
2
.emacs.d
|
@ -1 +1 @@
|
|||
Subproject commit 07fca786154551f90f36535bfb21f8ca4abd5027
|
||||
Subproject commit 1a2789c9229f6a6bd4c9001667f3134ec8b8247b
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
|||
!/.doom.d
|
||||
!/.emacs.d
|
||||
!/.gitconfig
|
||||
!/.gitmodules
|
||||
!/.nvidia-xinitrc
|
||||
!/.password-store
|
||||
!/.restore-permissions
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 442d54d71da76f8056b704edb658d8f80b8f64af
|
||||
Subproject commit a071adb3f7ee26b42bcb2a40be7c165a92e786fb
|
Loading…
Reference in a new issue