I’m really excited about mason.nvim [1], an amazing project by williamboman [2]. It’s worth exploring!
Portable package manager for Neovim that runs everywhere Neovim runs. Easily install and manage LSP servers, DAP servers, linters, and formatters.
References:
[1]: https://github.com/williamboman/mason.nvim
[2]: https://github.com/williamboman
GitHub Stars
GitHub stars posts
1859 posts
latest post 2026-05-24
Publishing rhythm
I came across mason.nvim [1] from mason-org [2], and it’s packed with great features and ideas.
Portable package manager for Neovim that runs everywhere Neovim runs. Easily install and manage LSP servers, DAP servers, linters, and formatters.
References:
[1]: https://github.com/mason-org/mason.nvim
[2]: https://github.com/mason-org
I like sbidoul’s [1] project hatch-pip-deepfreeze [2].
A hatch virtual environment [3] plugin to lock dependencies with pip-deepfreeze
References:
[1]: https://github.com/sbidoul
[2]: https://github.com/sbidoul/hatch-pip-deepfreeze
[3]: /virtual-environment/
yazgoo [1] has done a fantastic job with vmux [2]. Highly recommend taking a look.
helper for multiplexing terminals with vim/neovim
References:
[1]: https://github.com/yazgoo
[2]: https://github.com/yazgoo/vmux
Give github actions the -e flag in the shebang #! so they fail on any one
command failure. Otherwise each line will set the exit status, but only the
last one will be passed to ci.
#!/bin/bash -e
What is -e # [1]
The -e flag to the bash command allows your script to exit immediately if any
command within the script returns a non-zero exit status. This can be useful
for ensuring that your script exits with an error if any of the commands it
runs fail, which can help you identify and debug issues in your script. For
example, if you have a script that runs several commands and one of those
commands fails, the script will continue running without the -e flag, but will
exit immediately if the -e flag is present. This can make it easier to
troubleshoot your script and ensure that it runs correctly.
Solution for Windows # [2]
In windows the solution is not quite as simple. You can define a function in a
Windows batch script that wraps an if statement to check the exit status of a
command and handle any errors that may have occurred. Here is an example of how
you might define a function called “check_error” that does this:
:check_error
if errorlevel 1 (
echo An error occurred!
ex...
Looking for inspiration? sshfs [1] by libfuse [2].
A network filesystem client to connect to SSH servers
References:
[1]: https://github.com/libfuse/sshfs
[2]: https://github.com/libfuse
I recently setup some vm’s on my main machine and got sick of signing in with
passwords.
ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa.pub virt
Moving panes between tmux sessions is something that makes tmux a very flexible
and powerful tool. I don’t need this feature very often, but it comes in
clutch when you need it.
Pull a pane from any other session # [1]
Using choose-window I was able to come up with a way to select any pane
withing any other session and join it into my current session.
# Choose a pane to join in horizontally
bind f choose-window -Z 'join-pane -h -s "%%"'
Push/Pull from scratch # [2]
I’ve long had this one in my tmux config, I always have a “scratch” session
that I’m running, I often use for looking at things like k9s accross repos
within a popup.
This use case puts a pane into the scratch session, then pulls it back out. I
will use this to move a pane between sessions in the rare cases I need to do
this.
# push the active pane into the scratch session horizonally
bind -n M-f join-pane -ht scratch
# pull the last active pane from the scratch session horizonally into this session
bind -n M-F join-pane -hs scratch
References:
[1]: #pull-a-pane-from-any-other-session
[2]: #pushpull-from-scratch
joehillen [1] has done a fantastic job with sysz [2]. Highly recommend taking a look.
An fzf terminal UI for systemctl
References:
[1]: https://github.com/joehillen
[2]: https://github.com/joehillen/sysz
I like eth-p’s [1] project bat-extras [2].
Bash scripts that integrate bat with various command line tools.
References:
[1]: https://github.com/eth-p
[2]: https://github.com/eth-p/bat-extras
Just starred clipmenu [1] by cdown [2]. It’s an exciting project with a lot to offer.
Clipboard management using dmenu
References:
[1]: https://github.com/cdown/clipmenu
[2]: https://github.com/cdown
I’m impressed by neix [1] from qw3rtty [2].
neix - a RSS/Atom feed reader for your terminal.
References:
[1]: https://github.com/qw3rtty/neix
[2]: https://github.com/qw3rtty
rwhitt2049 [1] has done a fantastic job with df-viewer-poc [2]. Highly recommend taking a look.
No description available.
References:
[1]: https://github.com/rwhitt2049
[2]: https://github.com/rwhitt2049/df-viewer-poc
The work on ansible-vault-pre-commit [1] by pypeaday [2].
pre-commit hook to ensure sensitive info in a repo is encrypted with ansible-vault
References:
[1]: https://github.com/pypeaday/ansible-vault-pre-commit
[2]: https://github.com/pypeaday
The work on PySnooper [1] by cool-RR [2].
Never use print for debugging again
References:
[1]: https://github.com/cool-RR/PySnooper
[2]: https://github.com/cool-RR
I just shared some ssh keys with myself and ran into this error telling me that
I did not set the correct permissions on my key.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0750 for '/home/waylon/.ssh/id_*******' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "/home/waylon/.ssh/id_*******": bad Permissions
repo: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I changed them with the following commands.
chmod 644 ~/.ssh/id_*******.pub
chmod 600 ~/.ssh/id_*******
from kedro.pipeline import node
node(
input="raw",
output="int",
func=my_func,
tags=["one"],
)
Mr-Destructive [1] has done a fantastic job with djankata [2]. Highly recommend taking a look.
Django + Markata blog starter
References:
[1]: https://github.com/Mr-Destructive
[2]: https://github.com/Mr-Destructive/djankata
Check out nvim [1] by Allaman [2]. It’s a well-crafted project with great potential.
Minimal, blazingly fast, and pure Lua based Neovim configuration for my work as DevOps/Cloud Engineer with batteries included for Python, Golang, and, of course, YAML
References:
[1]: https://github.com/Allaman/nvim
[2]: https://github.com/Allaman
Looking for inspiration? dotfiles [1] by jessarcher [2].
$HOME sweet $HOME
References:
[1]: https://github.com/jessarcher/dotfiles
[2]: https://github.com/jessarcher