Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/roles/dev_tools/tasks/commands/fish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
src: "{{ (playbook_dir + '/../.config/fish') | realpath }}"
dest: "{{ lookup('env', 'HOME') }}/.config/fish"
state: link
when: not fish_config_exists.stat.exists
when: (not fish_config_exists.stat.exists) or (not fish_config_exists.stat.islnk)

# TODO: tmux-mem-cpu-load
- name: install plugins from fish_plugins file
Expand Down
3 changes: 3 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash -e

# /home/<user>
home_dir=`realpath ~`

cur_dir=`pwd`

function create_symlink_f() {
Expand Down
Loading