@@tarekali7064 this is true but 64-bit has been defacto for a while and for good reasons. Apple has made a good decision especially since the focus on productivity. Also most likely if you game on Mac you are running a Windows VM or Apples VM system. Supporting 32-bit is just a hassle and a security risk in some scenarios.
Very useful config! I especially like the "Change cursor shape for different vi modes" part. Only a true Vi user can appreciate and come up with that. Thanks Luke!
Luke never came back to the internet. He turned half-boomer, half-luddite and ranted forever in the woods. Although he wished for minimalism, he couldn't subtract his own existance. So eventually, he stopped thinking.
What I like in zsh is that I can type vi s/m/j/c/g/s/M and press Tab to have it expanded to vi src/main/java/com/goharsha/sesl/Main.java automatically. Very very handy when dealing with Git diffs and edit conflicted files or add individual files with patches.
You don't need to type "cd " in zsh, you only need to type the path itself (see AUTO_CD in 'man zshoptions'). And what's more, since the typed path will autocomplete, you would only type for example "/e/c/i" instead of "cd /etc/cups/interfaces" or similar.
Thank you so much, that was helpful! For hjkl navigation, I think it makes more sense to remap Alt+hjkl to behave like arrows on the OS level rather than setting up every app. On Windows it's easily done with PowerToys, on Linux you have xkb.
You forgot about cool option, I'm not sure if it is by default but if you enter "d" command it gives you history of all used directories, and than using num buttons you can easily navigate to it.
My my, how the times have changed. Also, will you do an ed tutorial? It's the standard editor you know
5 років тому+40
Indeed. Ed is the best (and standard) text editor. Every time my monitor malfunctions and I only have my line matrix printer as the standard output, ed comes to the rescue and enables me to continue writing my FORTRAN code as if nothing had happened. I'd be lost without ed. I have no need for this "Vi" nonsense. It does not even have the quit command.
@@Mathisen82 shoudnt zsh make rehash run automatically by the package manager when you install stuff? like when you run apt install and it says "processing triggers for man-db, mime-support, dkms, etc."
Your thing to have the block cursor seems a bit bloated. You can probably use the following (or a variant of it for zle): set vi-ins-mode-string \1\e[6 q\2 set vi-cmd-mode-string \1\e[2 q\2
Hey bro I'm glad I found your channel. I've been teaching myself Latin and computer science for more than a year now. I also love your polemical memes ; It proves you're knowledgeable.
I've been running zsh for quite some time and didn't know a couple of these things. The vi mode was one and I was very happy to have that, but color me stupid, figured out esc got me into normal mode but couldn't figure out how to get back into insert mode. Actually googled it and when I saw the answer I slapped myself. I've used vim for years, but in my defense I'd had almost half a beer.
Hey Luke, I happen to stumble upon this video because I thought that drawing was funny lol. So I use zsh before but switch to shell because zsh was a bit heavy for my taste. Probably because I had so many plugins installed. However, that's where the beauty of fish lies, all of those functionality/plugins you installed in zsh are all built in in fish. Zsh is just playing catch up to fish, re-implementing its features via plugins, bottom line, it's slower than fish. "You can't run shell scripts in fish" I ran bash scripts all the time, it only needs the shebang `#!/bin/bash`, if that somewhat won't work, there's `$ bash script.sh` Since most of the things I use zsh for fish have it built in, (since they just copied it from fish), I only have z as plugin and recently `pure` which adds a bunch of things like `>` changes to `
Great video! Just installed zsh-syntax-highlighting. Fantastic. Why you didn't tell me that earlier :-) Downloaded also your config file to peck out some raisins (German expression, don't know whether it works in English too). Certainly I will enable the vim keybindings ... Thank you again!
I'm using vifm instead of lf, it's more customizable and the combination with the vi-mode is awesome. It's also really fast. Actually I switched from ranger to vifm because it was so slow...
Luke Smith, how do you deal with esc + dot in the terminal when in vi-mode? I want to use vi-mode, but I use esc + dot so often, I can't live without it. The hacky solutions that people suggest online don't cycle through like esc + dot does.
Is there a plugin that just kicks off an instance of nvim when the shell starts that just sits there available to other plugins via gRCP? So anything can ask a nvim instance to work on a buffer or fully embed in a terminal ncurses app as a widget or something?
It's actually not true that pure bash comes pre-configured with more things enabled (color prompt, completion, etc.) than zsh. You can prove that by starting up a bash shell with options to disable running all start up scripts. But since bash is the default shell on most Linux distros, the initialization files /etc/bash.bashrc and /etc/skel/.bashrc (which is copied to your /home//.bashrc by default) are setup up to make bash look all pretty. But the contents of those files can vary across distros or other OSes (Mac, BSD, etc.), and so your out-of-the-gate bash experience can vary. The shell for the Arch installer is zsh -- and it looks really well configured out of the gate -- but that's because the zsh startup files there are using the GRML customization script (see grml.org, or the grml-zsh-config package in Arch). As an aside, the zsh customizations from GRML are rather bloated (handling different OSes, different versions of zsh, different preferences that can be set), but there are some gems in configuring useful zsh options there, so it's worth while to read the GRML code and pull out the useful stuff. Luke, glad you finally made the leap to zsh. No more shell-hopping required. It's the last shell you'll ever need.
i used zsh for a while. spent ages setting it up and everything. i eventually got rid of it because it is very slow. the worst offender was if i tried to tab complete a git command it would hang and ignore ^C for several seconds. im pretty sure all the extras are implemented in shell, (try set -x)
Luke, you know languages. I need your help as I couldn't find a definite answer to why is a Spanish "good day" greeting in plural. "Buenos días" while one would think it's "Buen día" I've found few most promising theories, one is saying that it's similar to the English "royal we". The other is saying that it's been derived from "Buenas noches nos dé Dios" - "Let God give us good nights" which used to be a saying (now the question is: why is plural being used in this saying!) and the last one is saying that in the past people used to meet each other so seldomly that they just wish good days rather than a good day to cover for the rest of the days they wouldn't see each other. Is it even something I should be thinking about? Some people say "happy days" in the UK and I seemed not to have a problem with that but I just started learning Spanish and for some reason this really bothers me. Oh and I've also been avoiding zsh so far. Btw. How do you feel/deal with writing stuff into web forms, comment sections etc. meaning no vim keybindings. Keep it 💯 G
For alias expansion you can do something like this: autoload -U compinit compinit # Expand alias on enter expand_alias_enter() { zle _expand_alias zle accept-line } # Expand alias on space expand_alias_space() { zle _expand_alias zle self-insert } # Create widgets zle -N expand_alias_enter zle -N expand_alias_space # Bind keys bindkey '^M' expand_alias_enter bindkey ' ' expand_alias_space
When I type `ls `, I get "zsh: do you wish to see all 142 possibilities (71 lines)?". If I hit , I then fall into the same menu as Luke. Any tips on how to get rid of this initial prompt? On Ubuntu 20.04
I know this video is kind of old, but have you ever checked out oh-my-zsh since? I cant find a video at least so definitely go check that out if you haven't done that already!
My system is Catalina macOS. And I’m using iterm2 for the terminal. After having installed oh-my-sh, I can not use vi editing keys on command-line edit mode by hitting escape key. The only solution I found was installing new plugin that enables this. What a bummer! ( I can not live without vim editor all the time, even on the command line. I hate using a editor with graphical interface but those apps developed by Apple.). What is the name of the editor appearing in the video? And I can not find so far text editor on iterm2 which has Swift syntax highlighting. If you know any, please enlighten me. Thanks in advance.
The best shell is Plan 9's rc, with one caveat: it's not possible to not export shell variables to the environment... but I recommend you try it nonetheless. I makes the bourne shell feel retarted afterwards.
How did you get transparency and syntax hightlighting to work with Urxt? Whenever I used it I would always get no syntax highlighting, and instead it would read from my .Xresources (I think, not to sure).
How can I config my zshrc list? I've noticed that the file is under different folder on the computer (iMac). Which one can I modify without jeopardizing my OS X?
I also copied and pasted, so using his zshrc profile, what is the alternative for Ctrl-A or Ctrl-E? (Moving to beginning or end of a line in the terminal.)
The part of changing cursor depending on vi mode in zsh broke my vim's cursor, it now looks like it's permanently in Insert mode (just inside vim, not in zsh). Any fix for this?
Did you notice vi mode destroy zsh dupe feature ? I don't know what this is called but let me explain? If you find any previous command you used in your terminal and you know your first two words. Eg. You want to find . "sudo pacman -Rcns somepackage" But you forget remaining command but only know two words. "sudo pacman" then just typing "sudo pacman" and pressing up arrow key get you only command that starts with "sudo pacman".
Lol, and I remember you saying that you didn't want to use ZSH because because you didn't want it and BASH installed at the same time due to B L O A T.
Hey Luke, thank you for your video. What file manager are you using now, still lf? I saw in your git repo you updated vifm config file recently. Did you switch to vifm? If so, could you please talk about it a little bit? Thank you!
I totally new to Zsh and Oh My Zsh, so please excuse any dumb questions. But what is the feature being used when you're in VIM and it's showing the status like the line number, the normal and visual mode and the bottom on your window.
I know this sounds so stupid, but how do I save my Zsh file in Linux? I keep changing my theme and it doesn't save when I close the terminal window. thank you! I want to figure this out before adding any more to the file.
URGENT! Read this:
lukesmith.xyz/deletion
I know...
UA-cam is such a fuckup nowadays.
make a new youtube channel. get help from fellow youtubers. most ppl won't bother about other platforms.
I am a simple man. When I see luke videos, I watch and copy his config.
That's me in a nutshell.
A simple man does make his life as simple as possible, nothing more. What's simpler than copying a file from a trustful guy like Luke?
so where can i copy his config?
@@abcl0653 github.com/LukeSmithxyz/voidrice
Yo guys how does he zoom in the sheel smoothly? Is it "^+"?
You know it's a Zoomer shell, as the next macOS update Catalina will replace Bash with Zsh.
Is this for real ? lol
@@tarekali7064 I mean good on them for disabling 32-bit. It's been how many years?
@@tarekali7064 this is true but 64-bit has been defacto for a while and for good reasons. Apple has made a good decision especially since the focus on productivity. Also most likely if you game on Mac you are running a Windows VM or Apples VM system. Supporting 32-bit is just a hassle and a security risk in some scenarios.
@@tarekali7064 unfortunately this means bias fx won't work for me :(, everything else is all g tho
Very useful config! I especially like the "Change cursor shape for different vi modes" part. Only a true Vi user can appreciate and come up with that. Thanks Luke!
Luke never came back to the internet. He turned half-boomer, half-luddite and ranted forever in the woods.
Although he wished for minimalism, he couldn't subtract his own existance. So eventually, he stopped thinking.
🚘
I just realized I've been watching you for a year. Glad you're alive again, man.
But Luke since you've been gone we've given up on the vim meme. Now Emacs is by best friend.
@@guestimator121 Actually WW2 was started by an Australian fellow called Steve
Fuck Steve
Vi-vi-vi is the editor of the beast.
Eh, I use both, and I use Doom Emacs (or spacemacs when I have to because reasons) when I use Emacs.
Ed is the standard text editor.
What I like in zsh is that I can type vi s/m/j/c/g/s/M and press Tab to have it expanded to vi src/main/java/com/goharsha/sesl/Main.java automatically. Very very handy when dealing with Git diffs and edit conflicted files or add individual files with patches.
You don't need to type "cd " in zsh, you only need to type the path itself (see AUTO_CD in 'man zshoptions'). And what's more, since the typed path will autocomplete, you would only type for example "/e/c/i" instead of "cd /etc/cups/interfaces" or similar.
Bash supports this too btw
God bless, Luke. Hope you're well. Thanks for the continuous videos, helping me hone my craft.
I love you Lenin ❤️
Is Luke's anprim internet finally good enough to upload regularly?
Thank you so much, that was helpful!
For hjkl navigation, I think it makes more sense to remap Alt+hjkl to behave like arrows on the OS level rather than setting up every app. On Windows it's easily done with PowerToys, on Linux you have xkb.
export BROWSER=brave
oh, no
he fell for it
where did you see it?
What does that mean?
@@_yourNameHere__ Exporting browser history I think..
@@awacs337 just means his default browser is brave
Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
That's why I love vlarbs
thanks man for sharing. I love the lf key shortcut integration to navigate to a folder, it went straight into my zsh config, brilliant.
Thanks Luke! I honestly didn't know how cool zsh was until I saw this
Thank you for your video. I spent hours trying to find a simple answer that every other page over complicated or skipped over.
You forgot about cool option, I'm not sure if it is by default but if you enter "d" command it gives you history of all used directories, and than using num buttons you can easily navigate to it.
Prophet came to release us from demonic Oh-My-Zsh config!
been running your config for like a month. Lovin it.
I love watching Luke do things I will never do.
Edit-and-execute-command (feature to open current command in $EDITOR) actually exists in bash as well, and it's bind to Ctrl-x + Ctrl-e by default :)
He has finally embraced the ZSH!
My my, how the times have changed. Also, will you do an ed tutorial? It's the standard editor you know
Indeed. Ed is the best (and standard) text editor. Every time my monitor malfunctions and I only have my line matrix printer as the standard output, ed comes to the rescue and enables me to continue writing my FORTRAN code as if nothing had happened. I'd be lost without ed.
I have no need for this "Vi" nonsense. It does not even have the quit command.
@ yes it does lol
@ ahah, thanks for a good laugh
my problem with shells other than bash is that each time i install something new it needs source .zshrc for tab completion to recognize it
hash -r
@@Mathisen82 can u explain this plz. i don't have access to my system right now
Run "rehash", it makes the shell look again in your PATH and update the autocomplete cache.
@@anm4500 already answerd i see hash -r is same as rehash
@@Mathisen82 shoudnt zsh make rehash run automatically by the package manager when you install stuff? like when you run apt install and it says "processing triggers for man-db, mime-support, dkms, etc."
He looks like Master Roshi from DB.
Thank you for this detailed introduction and tutorial of configuration .
Luke, please know that you can actually cd into the previous directory you were in using 'cd -' - no need for the lfcd function!
Thought my zsh config was perfect until now. Thanks for the tips
Your thing to have the block cursor seems a bit bloated. You can probably use the following (or a variant of it for zle):
set vi-ins-mode-string \1\e[6 q\2
set vi-cmd-mode-string \1\e[2 q\2
Doesnt work for me. it gives an error: bad pattern 1e[6
Hey bro I'm glad I found your channel. I've been teaching myself Latin and computer science for more than a year now. I also love your polemical memes ; It proves you're knowledgeable.
I'm glad your back making videos.
"might as well just use python as your shell" - ok, hold my xonsh.
Can you explain how did you set up your color scheme? Is it from zsh or just terminal settings?
been using zsh for years, i like it for superior completion features. the rest is a nice bonus.
My main gripe with fish shell is that I always forget that commands that I copy from online won't work because of the syntax differences from bash
Sup Luke, are you planning to do new not related podcast?
Yes, do one on roads
thank god you're back
happy bday luke smith
MacOS catalina switched over to zsh from a very old version of bash. This video was very useful ☺️
I've been running zsh for quite some time and didn't know a couple of these things. The vi mode was one and I was very happy to have that, but color me stupid, figured out esc got me into normal mode but couldn't figure out how to get back into insert mode. Actually googled it and when I saw the answer I slapped myself. I've used vim for years, but in my defense I'd had almost half a beer.
Hey Luke, I happen to stumble upon this video because I thought that drawing was funny lol. So I use zsh before but switch to shell because zsh was a bit heavy for my taste. Probably because I had so many plugins installed. However, that's where the beauty of fish lies, all of those functionality/plugins you installed in zsh are all built in in fish. Zsh is just playing catch up to fish, re-implementing its features via plugins, bottom line, it's slower than fish.
"You can't run shell scripts in fish" I ran bash scripts all the time, it only needs the shebang `#!/bin/bash`, if that somewhat won't work, there's `$ bash script.sh` Since most of the things I use zsh for fish have it built in, (since they just copied it from fish), I only have z as plugin and recently `pure` which adds a bunch of things like `>` changes to `
From one bro to another, I missed you Luke
Great video! Just installed zsh-syntax-highlighting. Fantastic. Why you didn't tell me that earlier :-) Downloaded also your config file to peck out some raisins (German expression, don't know whether it works in English too). Certainly I will enable the vim keybindings ... Thank you again!
one of the best vids about zsh tbh
"Change inside quotes" actually works with zsh-vi-mode plugin
What zsh theme and font are you using ? This looks so good
Two uploads in the same week, this is a blessed time. I wonder what the average upload time to youtube is at the boomer shack...
Thanks for creating this.. I'm right behind ya
Yes, finally this is the content I been waiting for. I love zsh/oh-my-zsh and have been using it since 2011 :)
I'm using vifm instead of lf, it's more customizable and the combination with the vi-mode is awesome. It's also really fast. Actually I switched from ranger to vifm because it was so slow...
Luke Smith, how do you deal with esc + dot in the terminal when in vi-mode? I want to use vi-mode, but I use esc + dot so often, I can't live without it. The hacky solutions that people suggest online don't cycle through like esc + dot does.
Where is fzf in this picture?
We really missed your videos good to be back dude
"let me get rid of my config" *CLALCALCLACLALALCLCLUUNKLLCKC*
Is there a plugin that just kicks off an instance of nvim when the shell starts that just sits there available to other plugins via gRCP? So anything can ask a nvim instance to work on a buffer or fully embed in a terminal ncurses app as a widget or something?
glad to see you finally joined the winning team lol... and yeah, fuck fish...
3:07 That's what I was looking for! Thx! You just helped me to solve my problem. :)
What kind of internet you got? I live in the backwoods too, and only have a hotspot as a viable option. Friggin Satellite internet is too high too.
@Alex Libman It uses T-mobile towers, no signal for me
What’s the lf command ? I don’t know if it’s explained in an other video because I am new here 😄
It's actually not true that pure bash comes pre-configured with more things enabled (color prompt, completion, etc.) than zsh. You can prove that by starting up a bash shell with options to disable running all start up scripts.
But since bash is the default shell on most Linux distros, the initialization files /etc/bash.bashrc and /etc/skel/.bashrc (which is copied to your /home//.bashrc by default) are setup up to make bash look all pretty. But the contents of those files can vary across distros or other OSes (Mac, BSD, etc.), and so your out-of-the-gate bash experience can vary.
The shell for the Arch installer is zsh -- and it looks really well configured out of the gate -- but that's because the zsh startup files there are using the GRML customization script (see grml.org, or the grml-zsh-config package in Arch). As an aside, the zsh customizations from GRML are rather bloated (handling different OSes, different versions of zsh, different preferences that can be set), but there are some gems in configuring useful zsh options there, so it's worth while to read the GRML code and pull out the useful stuff.
Luke, glad you finally made the leap to zsh. No more shell-hopping required. It's the last shell you'll ever need.
For Bash:
set -o vi
export VISUAL=vi
export EDITOR=vi
Then press ESC on the command line to enter a full Vim session
i used zsh for a while. spent ages setting it up and everything. i eventually got rid of it because it is very slow. the worst offender was if i tried to tab complete a git command it would hang and ignore ^C for several seconds.
im pretty sure all the extras are implemented in shell, (try set -x)
nice to see you finally on the right side of history
hey luke, you should try 'fasd' truly life changing
Finally you've ascended the bashlets.
Luke, you know languages. I need your help as I couldn't find a definite answer to why is a Spanish "good day" greeting in plural. "Buenos días" while one would think it's "Buen día" I've found few most promising theories, one is saying that it's similar to the English "royal we". The other is saying that it's been derived from "Buenas noches nos dé Dios" - "Let God give us good nights" which used to be a saying (now the question is: why is plural being used in this saying!) and the last one is saying that in the past people used to meet each other so seldomly that they just wish good days rather than a good day to cover for the rest of the days they wouldn't see each other. Is it even something I should be thinking about? Some people say "happy days" in the UK and I seemed not to have a problem with that but I just started learning Spanish and for some reason this really bothers me. Oh and I've also been avoiding zsh so far.
Btw. How do you feel/deal with writing stuff into web forms, comment sections etc. meaning no vim keybindings.
Keep it 💯 G
Hurra! Terminal Hero has back in glory! Thanks
I'd love your thoughts on Morpheus Linux, it's a distro built around the suckless utilities
great video. looks promising.
I think you were looking for the word "caret" for the cursor.
For alias expansion you can do something like this:
autoload -U compinit
compinit
# Expand alias on enter
expand_alias_enter() {
zle _expand_alias
zle accept-line
}
# Expand alias on space
expand_alias_space() {
zle _expand_alias
zle self-insert
}
# Create widgets
zle -N expand_alias_enter
zle -N expand_alias_space
# Bind keys
bindkey '^M' expand_alias_enter
bindkey ' ' expand_alias_space
the thing you type with is called the carret
did you make a video about the powerline that you are using?
When I type `ls `, I get "zsh: do you wish to see all 142 possibilities (71 lines)?". If I hit , I then fall into the same menu as Luke. Any tips on how to get rid of this initial prompt? On Ubuntu 20.04
Does the syntax highlighting plugin highlight your text editor syntax as well or is that being handled by something else?
Thank you for this great video!
Hacer Demirel Burada bir Türk göreceğim aklımın ucundan bile geçmezdi, ulaş bana...
I know this video is kind of old, but have you ever checked out oh-my-zsh since?
I cant find a video at least so definitely go check that out if you haven't done that already!
My system is Catalina macOS. And I’m using iterm2 for the terminal. After having installed oh-my-sh, I can not use vi editing keys on command-line edit mode by hitting escape key. The only solution I found was installing new plugin that enables this. What a bummer! ( I can not live without vim editor all the time, even on the command line. I hate using a editor with graphical interface but those apps developed by Apple.). What is the name of the editor appearing in the video? And I can not find so far text editor on iterm2 which has Swift syntax highlighting. If you know any, please enlighten me. Thanks in advance.
The best shell is Plan 9's rc, with one caveat: it's not possible to not export shell variables to the environment... but I recommend you try it nonetheless. I makes the bourne shell feel retarted afterwards.
How did you get transparency and syntax hightlighting to work with Urxt? Whenever I used it I would always get no syntax highlighting, and instead it would read from my .Xresources (I think, not to sure).
my .zprofile was not getting loaded. I had to use the $HOME/.zshenv to set the ZDOTDIR.
How can I config my zshrc list? I've noticed that the file is under different folder on the computer (iMac). Which one can I modify without jeopardizing my OS X?
I also copied and pasted, so using his zshrc profile, what is the alternative for Ctrl-A or Ctrl-E? (Moving to beginning or end of a line in the terminal.)
How do you auto-complete package names in pacman or yay with zsh? zsh-completions does nothing.
That zle-keymap-select() function is crying to be implemented as a case statement -- it'll be easier to read and generally will run faster.
The part of changing cursor depending on vi mode in zsh broke my vim's cursor, it now looks like it's permanently in Insert mode (just inside vim, not in zsh). Any fix for this?
Where is the video, Lebowski???
After you press ctrl - e to enter vim buffer, how do you return to the terminal? Certainly not :q or :bd right? Or is it ctrl+z?
Did you notice vi mode destroy zsh dupe feature ? I don't know what this is called but let me explain?
If you find any previous command you used in your terminal and you know your first two words.
Eg.
You want to find . "sudo pacman -Rcns somepackage"
But you forget remaining command but only know two words. "sudo pacman" then just typing "sudo pacman" and pressing up arrow key get you only command that starts with "sudo pacman".
Lol, and I remember you saying that you didn't want to use ZSH because because you didn't want it and BASH installed at the same time due to B L O A T.
eh just manually delete bash and symlink it to zsh. What's the worst that could happen?
@@LukeSmithxyz Bash really should stay for scripts that use exclusively bash idioms, and sh would be linked to something pure-POSIX like dash.
@@henrymalinowski5125 _what's the worst that could happen_
+1 for having Bastiat, Folsom, Hayek, and Hazlitt books. -1 for Dawkins and Keynes.
Awesome video Luke! 🚀
Really nice video, Thanks!!! Your keyboard flow makes me feel really nice. One thing.... I can't use your ^o function~ I have installed lf.
Hey Luke, thank you for your video. What file manager are you using now, still lf? I saw in your git repo you updated vifm config file recently. Did you switch to vifm? If so, could you please talk about it a little bit? Thank you!
Zsh is like a SuperBASHman!
How do you increase font size in terminal? Which keys do you press?
how your terminal looks with no title bar and menu bar..just a square..please tell me Luke
I totally new to Zsh and Oh My Zsh, so please excuse any dumb questions. But what is the feature being used when you're in VIM and it's showing the status like the line number, the normal and visual mode and the bottom on your window.
Actually never-mind that above question. I was able to figure it out and install it. Arline for VIM.
I know this sounds so stupid, but how do I save my Zsh file in Linux? I keep changing my theme and it doesn't save when I close the terminal window. thank you! I want to figure this out before adding any more to the file.