From 14c50111d682fe96492ba6040eb4577ef686036f Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 18 Jun 2024 08:41:09 -0500 Subject: [PATCH 1/2] update: warn RE: pwd --- update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update.sh b/update.sh index 1f33e97..b82d0bb 100755 --- a/update.sh +++ b/update.sh @@ -3,6 +3,7 @@ # minimal dotfile manager # tracks files / copies them into the repo, sorted by hostname # +# note: assumes pwd is this repo before running this script set -u # array of files [relative to home] to include From 37e7ab3edc4e81d165ac4d09b920fd1609743d02 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 18 Jun 2024 08:41:55 -0500 Subject: [PATCH 2/2] nvim: add coc-settings.json --- .../.config/nvim/coc-settings.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 outerheaven.init3.home/.config/nvim/coc-settings.json diff --git a/outerheaven.init3.home/.config/nvim/coc-settings.json b/outerheaven.init3.home/.config/nvim/coc-settings.json new file mode 100644 index 0000000..908a05b --- /dev/null +++ b/outerheaven.init3.home/.config/nvim/coc-settings.json @@ -0,0 +1,19 @@ +{ + "languageserver": { + "systemd-language-server": { + "command": "systemd-language-server", + "filetypes": ["systemd"] + } + }, + "jedi.enable": true, + "jedi.startupMessage": true, + "jedi.jediSettings.debug": false, + "jedi.diagnostics.enable": false, + "jedi.workspace.symbols.ignoreFolders": [ + ".nox", + ".tox", + ".venv", + "__pycache__", + "venv" + ] +}