This is some investigation in to nushell will work. I will be looking to use this cross platform, as zsh will not work on windows. Adds some of the core modules so I don't loose my mind having to relearn mussel memory. The goal of this is to replicate my use of oh-my-zsh, I think this will take some time, I have sunk years into the zsh config. The aliases will be the same, the GOPATH project structure will be replicated and the dir hooks will be implemeted so my PATH gets setup just as I like it.
21 lines
249 B
Text
21 lines
249 B
Text
use path.nu
|
|
|
|
use fzf.nu *
|
|
use neovim.nu *
|
|
use prompt.nu *
|
|
use sapling.nu *
|
|
use nvm.nu *
|
|
|
|
nvm use default
|
|
|
|
$env.config = {
|
|
show_banner: false,
|
|
hooks: {
|
|
env_change: {
|
|
PWD: [
|
|
{|_, after| nvm dir-hook $after }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|