diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-02-05 21:29:10 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-02-05 21:29:57 +0100 |
commit | a77db7f4893ae7c4cffdb0b6392467bbe5773c98 (patch) | |
tree | ebf653af8850388dcddad0a8b4f2f2176e3e2391 | |
parent | 472c64a062390f6f18fc7b96fbc7e59b53827956 (diff) |
updates
-rw-r--r-- | .config/X11/base | 2 | ||||
-rw-r--r-- | .config/coc/extensions/package.json | 12 | ||||
-rwxr-xr-x | .local/share/bin/mk | 7 |
3 files changed, 14 insertions, 7 deletions
diff --git a/.config/X11/base b/.config/X11/base index a556ed2..a538320 100644 --- a/.config/X11/base +++ b/.config/X11/base @@ -1,4 +1,4 @@ -*.font: JetBrainsMono Nerd Font:size=7.5:antialias=true:autohint=true +*.font: monospace:size=7.5:antialias=true:autohint=true *.borderpx: 10 *.termname: st-256color *.tabspaces: 2 diff --git a/.config/coc/extensions/package.json b/.config/coc/extensions/package.json index b055105..457c31b 100644 --- a/.config/coc/extensions/package.json +++ b/.config/coc/extensions/package.json @@ -2,20 +2,20 @@ "dependencies": { "coc-css": ">=2.1.0", "coc-emmet": ">=1.1.6", - "coc-go": ">=1.3.33", + "coc-go": ">=1.3.35", "coc-html": ">=1.8.0", "coc-java": ">=1.15.2", "coc-json": ">=1.9.2", "coc-python": ">=1.2.13", - "coc-rust-analyzer": ">=0.75.2", - "coc-tsserver": ">=2.1.4", + "coc-rust-analyzer": ">=0.80.2", + "coc-tsserver": ">=2.2.0", "coc-vimtex": ">=1.1.5", "coc-lua": ">=2.0.6", - "coc-deno": ">=3.13.0", - "coc-sh": ">=1.2.2", + "coc-deno": ">=3.15.0", + "coc-sh": ">=1.2.4", "coc-solargraph": ">=1.2.4" }, "disabled": [], "locked": [], - "lastUpdate": 1737632010099 + "lastUpdate": 1738787299688 }
\ No newline at end of file diff --git a/.local/share/bin/mk b/.local/share/bin/mk index ab0f586..b7e2b41 100755 --- a/.local/share/bin/mk +++ b/.local/share/bin/mk @@ -6,6 +6,13 @@ showmode() { printf '\e[1A\e['$col'G\e[1;30m%s\e[0m\n' "$mode" } +mode_west() { + showmode 'west' + [ -z "$*" ] && set -- build + exec west "$@" +} +[ -e "west.yml" ] && mode_west "$@" + mode_cmake() { showmode 'cmake' builddir="build" |