some basic zellij and helix configs

This commit is contained in:
Noah Masur
2025-03-18 21:47:40 -04:00
parent 8e7ccbda59
commit fa1482dcfc
2 changed files with 86 additions and 4 deletions

View File

@ -41,10 +41,29 @@ in
settings = {
theme = "base16";
editor.cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
editor = {
# Change cursors depending on the mode
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
# View line numbers relative to the current cursors
line-number = "relative";
# Show whitespace visible to the user
# Waiting for trailing whitespace option ideally
whitespace = {
render = {
# space = "all";
tab = "all";
};
characters = {
# space = "·";
tab = "";
};
};
};
};