summaryrefslogtreecommitdiff
path: root/roles/tools/files
diff options
context:
space:
mode:
Diffstat (limited to 'roles/tools/files')
-rwxr-xr-xroles/tools/files/gio_unwrapper.sh2
-rw-r--r--roles/tools/files/vimrc1
2 files changed, 2 insertions, 1 deletions
diff --git a/roles/tools/files/gio_unwrapper.sh b/roles/tools/files/gio_unwrapper.sh
index 5629b28..59886d6 100755
--- a/roles/tools/files/gio_unwrapper.sh
+++ b/roles/tools/files/gio_unwrapper.sh
@@ -13,7 +13,7 @@
13# environments) 13# environments)
14 14
15if [ -n "$GIO_LAUNCHED_DESKTOP_FILE" ]; then 15if [ -n "$GIO_LAUNCHED_DESKTOP_FILE" ]; then
16 while [ -n "$1" -a "${1:0:1}" != "/" -a ! -f "$1" ]; do 16 while [ -n "$1" -a "${1:0:1}" != "/" -a "${1:0:7}" != "file://" -a ! -f "$1" ]; do
17 shift 17 shift
18 done 18 done
19 xdg-open "$1" 19 xdg-open "$1"
diff --git a/roles/tools/files/vimrc b/roles/tools/files/vimrc
index 6de0f1c..eabcf38 100644
--- a/roles/tools/files/vimrc
+++ b/roles/tools/files/vimrc
@@ -35,6 +35,7 @@ Plug 'chrisbra/SudoEdit.vim'
35Plug 'Chiel92/vim-autoformat' 35Plug 'Chiel92/vim-autoformat'
36Plug 'pearofducks/ansible-vim' 36Plug 'pearofducks/ansible-vim'
37Plug 'juliosueiras/vim-terraform-completion' 37Plug 'juliosueiras/vim-terraform-completion'
38Plug 'sjl/gundo.vim'
38 39
39call plug#end() 40call plug#end()
40 41