update config
- .gitignore +2 -2
- nushell/config.nu +1 -1
- nushell/env.nu +1 -1
- setup.sh +2 -2
.gitignore
CHANGED
|
@@ -4,5 +4,5 @@ configstore
|
|
|
4
4
|
containers
|
|
5
5
|
NuGet
|
|
6
6
|
nushell/history.txt
|
|
7
|
-
keystore.jks
|
|
8
|
-
|
|
7
|
+
pyrossh_keystore.jks
|
|
8
|
+
github-copilot
|
nushell/config.nu
CHANGED
|
@@ -207,7 +207,7 @@ $env.config = {
|
|
|
207
207
|
max_size: 1000_000 # Session has to be reloaded for this to take effect
|
|
208
208
|
sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file
|
|
209
209
|
file_format: "plaintext" # "sqlite" or "plaintext"
|
|
210
|
-
isolation:
|
|
210
|
+
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.
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
completions: {
|
nushell/env.nu
CHANGED
|
@@ -26,7 +26,7 @@ $env.NU_PLUGIN_DIRS = [
|
|
|
26
26
|
($nu.default-config-dir | path join 'plugins') # add <nushell-config-dir>/plugins
|
|
27
27
|
]
|
|
28
28
|
|
|
29
|
-
$env.PROMPT_COMMAND = { || oh-my-posh
|
|
29
|
+
$env.PROMPT_COMMAND = { || oh-my-posh print primary --config $'/opt/homebrew/opt/oh-my-posh/themes/zash.omp.json' }
|
|
30
30
|
$env.PROMPT_INDICATOR = $"(ansi y)$> (ansi reset)"
|
|
31
31
|
|
|
32
32
|
use std "path add"
|
setup.sh
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
brew install nu helix zellij
|
|
1
|
+
brew install nu helix zellij podman openjdk gradle mas cocoapods bun rclone jandedobbeleer/oh-my-posh/oh-my-posh
|
|
2
2
|
|
|
3
|
-
brew --cask install ghostty
|
|
3
|
+
brew --cask install ghostty void android-studio google-chrome obsidian secretive mpv stats pika font-ubuntu-mono
|
|
4
4
|
|
|
5
5
|
mas install 497799835 # installs xcode
|
|
6
6
|
echo /opt/homebrew/bin/nu | sudo tee -a /etc/shells
|