From 79a96e3486758a2098c752e9a21c45ce8ce6ef71 Mon Sep 17 00:00:00 2001 From: Pin Straw Date: Mon, 25 May 2026 16:08:43 -0400 Subject: [PATCH] vim updates --- .vimrc | 2 ++ justfile | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index e3c623e..184d016 100644 --- a/.vimrc +++ b/.vimrc @@ -8,6 +8,8 @@ call plug#begin() Plug 'editorconfig/editorconfig-vim' Plug 'towolf/vim-helm' Plug 'valloric/youcompleteme' + Plug 'fatih/vim-go' + Plug 'NoahTheDuke/vim-just' call plug#end() syntax on diff --git a/justfile b/justfile index 7305f13..6708318 100644 --- a/justfile +++ b/justfile @@ -1,7 +1,11 @@ export zig_version := "master" -hello-world: - echo "Hello World" +default: + @just --list + +check-vimrc: + #!/usr/bin/env bash + diff -u .vimrc ~/.vimrc || echo "Local file has updates" # Full zig install setup-zig: setup-zig-lib setup-zig-path setup-zls