]> git.rmz.io Git - dotfiles.git/blob - xprofile
nvim: continue using Comment.nvim over native and mini.comment
[dotfiles.git] / xprofile
1 #!/bin/sh
2
3 userprofile_d=$XDG_CONFIG_HOME/xprofile.d
4
5 if [ -d "$userprofile_d" ] ; then
6 for f in $userprofile_d/?*.sh ; do
7 [ -f "$f" ] && source "$f"
8 done
9 unset f
10 fi