dotter: Fix non-utf8 symlink warnings
Fix the warnings given by dotter for files that are not utf-8 encoded to explicitly be identified as symlinks. Should ultimately probably be either moved into data directories or moved out of repo altogether, but for now it works well.
This commit is contained in:
parent
5b2a55cfe3
commit
362c1f5375
1 changed files with 5 additions and 0 deletions
|
@ -39,9 +39,13 @@ git = "~"
|
|||
"multimedia/README.md" = { target = "~/README.md", type = "symbolic", if = "false" }
|
||||
"multimedia/.config/mpv/scripts" = { target = "~/.config/mpv/scripts", type = "symbolic" }
|
||||
"multimedia/.config/ncmpcpp/config" = { target = "~/.config/ncmpcpp/config", type = "symbolic" }
|
||||
"multimedia/.config/mpv/fonts/uosc_icons.otf" = { target = "~/.config/mpv/fonts/uosc_icons.otf", type = "symbolic" }
|
||||
"multimedia/.config/mpv/fonts/uosc_textures.ttf" = { target = "~/.config/mpv/fonts/uosc_textures.ttf", type = "symbolic" }
|
||||
multimedia = "~"
|
||||
|
||||
[nvim.files]
|
||||
"nvim/.config/nvim/spell/de.utf-8.add.spl" = { target = "~/.config/nvim/spell/de.utf-8.add.spl", type = "symbolic" }
|
||||
"nvim/.config/nvim/spell/en.utf-8.add.spl" = { target = "~/.config/nvim/spell/en.utf-8.add.spl", type = "symbolic" }
|
||||
nvim = "~"
|
||||
|
||||
[office.files]
|
||||
|
@ -51,6 +55,7 @@ office = "~"
|
|||
|
||||
[pass.files]
|
||||
"pass/README.md" = { target = "~/README.md", type = "symbolic", if = "false" }
|
||||
"pass/.local/share/pass-pick/assets/rofi-menu.gif" = { target = "~/nowhere", type = "symbolic", if = "false" }
|
||||
pass = "~"
|
||||
|
||||
[qutebrowser.files]
|
||||
|
|
Loading…
Reference in a new issue