bqn 4 emacs
This commit is contained in:
parent
cf297b020d
commit
c9704beb08
2 changed files with 13 additions and 1 deletions
5
home.nix
5
home.nix
|
|
@ -53,10 +53,11 @@ in
|
||||||
rubyPackages_3_4.rubocop
|
rubyPackages_3_4.rubocop
|
||||||
elixir
|
elixir
|
||||||
lua
|
lua
|
||||||
sageWithDoc
|
#sageWithDoc
|
||||||
zls
|
zls
|
||||||
rustup
|
rustup
|
||||||
sqlite
|
sqlite
|
||||||
|
cbqn-standalone-replxx
|
||||||
|
|
||||||
# might as well use it consistently
|
# might as well use it consistently
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
|
|
@ -97,6 +98,7 @@ in
|
||||||
jetbrains-mono
|
jetbrains-mono
|
||||||
lmmath
|
lmmath
|
||||||
julia-mono
|
julia-mono
|
||||||
|
bqn386
|
||||||
|
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
] ++ more-packages
|
] ++ more-packages
|
||||||
|
|
@ -425,6 +427,7 @@ in
|
||||||
zig-mode
|
zig-mode
|
||||||
python-mode
|
python-mode
|
||||||
tuareg
|
tuareg
|
||||||
|
bqn-mode
|
||||||
|
|
||||||
treesit-grammars.with-all-grammars
|
treesit-grammars.with-all-grammars
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -491,11 +491,20 @@ If the new path's directories does not exist, create them."
|
||||||
'("\\.exs\\'" . elixir-mode))
|
'("\\.exs\\'" . elixir-mode))
|
||||||
(add-to-list 'auto-mode-alist
|
(add-to-list 'auto-mode-alist
|
||||||
'("\\.rs\\'" . rust-mode))
|
'("\\.rs\\'" . rust-mode))
|
||||||
|
(add-to-list 'auto-mode-alist
|
||||||
|
'("\\.bqn\\'" . bqn-mode))
|
||||||
|
|
||||||
:hook
|
:hook
|
||||||
;; Auto parenthesis matching
|
;; Auto parenthesis matching
|
||||||
(prog-mode . electric-pair-mode))
|
(prog-mode . electric-pair-mode))
|
||||||
|
|
||||||
|
(use-package bqn-mode
|
||||||
|
:bind (
|
||||||
|
("C-c C-c" . bqn-comint-send-dwim)
|
||||||
|
("C-c C-b" . bqn-comint-send-buffer)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;;;
|
;;;
|
||||||
;;; Version Control
|
;;; Version Control
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue