mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-11 07:10:39 +02:00
feat: reactivate zsh and add plugins from my previous config
This commit is contained in:
parent
7307d0aa43
commit
15210f06b4
11 changed files with 115 additions and 156 deletions
28
users/modules/config/shell/nushell/config.nu
Normal file
28
users/modules/config/shell/nushell/config.nu
Normal file
|
@ -0,0 +1,28 @@
|
|||
$env.config = {
|
||||
show_banner: false
|
||||
|
||||
history: {
|
||||
max_size: 10000000
|
||||
file_format: "sqlite"
|
||||
# Write history on enter
|
||||
sync_on_enter: true
|
||||
# but each shell should have an effective isolated buffer
|
||||
isolation: true
|
||||
}
|
||||
|
||||
completions: {
|
||||
case_sensitive: false
|
||||
quick: true
|
||||
partial: true
|
||||
algorithm: "prefix"
|
||||
external: {
|
||||
enable: true
|
||||
max_results: 200
|
||||
completer: null
|
||||
}
|
||||
}
|
||||
|
||||
cd: {
|
||||
abbreviations: true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue