22 lines
534 B
Fish
Executable file
22 lines
534 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW
|
|
configureSW
|
|
end
|
|
|
|
function configureSW
|
|
set -l configFile /etc/vimrc
|
|
set -l indicator "set clipboard"
|
|
|
|
if not grep "\b$indicator\b" "$configFile" > /dev/null
|
|
# As described in https://wiki.archlinux.org/title/Vim#Clipboard
|
|
echo "$indicator+=unnamed,unnamedplus" | sudo tee "$configFile" > /dev/null;
|
|
end
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|