mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
bash: set options
This commit is contained in:
parent
41a6e55ba3
commit
3dbe0eb154
|
@ -6,6 +6,18 @@
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
|
enableVteIntegration = true;
|
||||||
|
shellOptions = [
|
||||||
|
"autocd"
|
||||||
|
"cdspell"
|
||||||
|
"checkjobs"
|
||||||
|
"checkwinsize"
|
||||||
|
"dirspell"
|
||||||
|
"dotglob"
|
||||||
|
"extglob"
|
||||||
|
"globstar"
|
||||||
|
"histappend"
|
||||||
|
];
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
|
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue