The content of this gist was moved to this repo: https://github.com/valosekj/zsh_config
Last active
January 4, 2025 00:02
-
-
Save valosekj/601f2665602c43b378894e18d00b3ce1 to your computer and use it in GitHub Desktop.
My zsh configuration and tips
Regarding the .nanorc
, the following "single-line" solution might be working as well:
echo 'include "/usr/local/share/nano/*.nanorc"' >> ~/.nanorc
Path for FSL does not work in some cases. While using this specification of FSL path, I was not able to run FSLeyes (app crashed due to some errors). I replaced this part of code (lines 168-170) as follows:
source fsl-activator 6.0.5
Now I'm able to run FSL without any errors.
Yeah, you are right, on some machines, /usr/local/fsl/
points to an older version of FSL (5.0.9 or 5.0.10) with nonworking FSLeyes. The workaround with fsl-activator
is correct.
Regarding the
.nanorc
, the following "single-line" solution might be working as well:echo 'include "/usr/local/share/nano/*.nanorc"' >> ~/.nanorc
Okay, this seems not to be working.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Path for FSL does not work in some cases. While using this specification of FSL path, I was not able to run FSLeyes (app crashed due to some errors). I replaced this part of code (lines 168-170) as follows:
source fsl-activator 6.0.5
Now I'm able to run FSL wtihouth any errors.