From 168b4de6767ca023fd888d8c39b14ecbd79fda22 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Mon, 16 Nov 2020 13:08:56 +0000 Subject: [vim] Add plugin for julia --- bin/.local/bin/workspace | 4 ++-- vim/.vimrc | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/.local/bin/workspace b/bin/.local/bin/workspace index 36f09d4..2ac5690 100755 --- a/bin/.local/bin/workspace +++ b/bin/.local/bin/workspace @@ -1,13 +1,13 @@ #!/usr/bin/env bash -# List of workspaces: ( number, name, focused) +# List of workspaces: ( number, name, focused, display) workspaces=$(i3-msg -t get_workspaces | awk 'BEGIN { RS="(},{)|(\\[{)|(}\\])"; FPAT="([^,:\"]+)|([^,\"]+:[^,\"]+)|([^,]+{[^}]+})" } $0 !~ "^\\s*$" { gsub(/"/, "", $4) - print $4, $6, $10 + print $4, $6, $10, $13 }' | sort) act_on_container() { diff --git a/vim/.vimrc b/vim/.vimrc index b4f98ed..3ae13d2 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -80,6 +80,7 @@ Plug 'KKPMW/sacredforest-vim' Plug 'junegunn/seoul256.vim' Plug 'romainl/Apprentice' Plug 'arcticicestudio/nord-vim' +Plug 'JuliaEditorSupport/julia-vim' " Plug 'axvr/zepl.vim' call plug#end() -- cgit v1.2.3