unnushell?
This commit is contained in:
parent
8dd4c82b8e
commit
910a5c8ec0
4 changed files with 6 additions and 3 deletions
|
|
@ -232,7 +232,7 @@ in
|
|||
};
|
||||
|
||||
environment.variables.EDITOR = "nvim";
|
||||
environment.variables.SHELL = "${pkgs.nushell}/bin/nushell";
|
||||
#environment.variables.SHELL = "${pkgs.nushell}/bin/nushell";
|
||||
environment.variables.TERM = "kitty";
|
||||
# BAD IDEA! I DON'T HAVE A CONCRETE REASON, MAINLY JUST VIBES
|
||||
# STILL MILES BETTER THAN NIX_AUTO_INSTALL THOUGH
|
||||
|
|
|
|||
2
home.nix
2
home.nix
|
|
@ -155,7 +155,7 @@ in
|
|||
};
|
||||
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
enable = !darwin;
|
||||
|
||||
settings = {
|
||||
show_banner = false;
|
||||
|
|
|
|||
|
|
@ -539,6 +539,8 @@ If the new path's directories does not exist, create them."
|
|||
(rust-mode . eglot-ensure)
|
||||
(before-save . eglot-format)
|
||||
|
||||
:bind (("C-SPC" . complete-symbol))
|
||||
|
||||
:config
|
||||
; (fset #'jsonrpc--log-event #'ignore) ; massive perf boost---don't log every event
|
||||
|
||||
|
|
@ -551,6 +553,7 @@ If the new path's directories does not exist, create them."
|
|||
("rust-analyzer" :initializationOptions
|
||||
(:check (:command "clippy"
|
||||
:extraArgs ["--" "-W" "clippy::pedantic"])))))
|
||||
|
||||
)
|
||||
|
||||
; oorg
|
||||
|
|
|
|||
|
|
@ -1109,7 +1109,7 @@ color15 #ebdbb2
|
|||
|
||||
#: Advanced {{{
|
||||
|
||||
shell nu
|
||||
shell fish
|
||||
|
||||
#: The shell program to execute. The default value of . means to use
|
||||
#: whatever shell is set as the default shell for the current user.
|
||||
|
|
|
|||
Loading…
Reference in a new issue