mirror of
https://github.com/nmasur/dotfiles
synced 2025-04-04 22:41:11 +00:00
some conveniences for helix
This commit is contained in:
parent
12d0bccb42
commit
6a7706ca85
@ -24,6 +24,13 @@ in
|
|||||||
EDITOR = lib.mkForce "${lib.getExe pkgs.helix}";
|
EDITOR = lib.mkForce "${lib.getExe pkgs.helix}";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Create quick aliases for launching Helix
|
||||||
|
programs.fish = {
|
||||||
|
shellAbbrs = {
|
||||||
|
h = lib.mkForce "hx";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -61,6 +68,14 @@ in
|
|||||||
# View line numbers relative to the current cursors
|
# View line numbers relative to the current cursors
|
||||||
line-number = "relative";
|
line-number = "relative";
|
||||||
|
|
||||||
|
# Show hidden files
|
||||||
|
file-picker = {
|
||||||
|
hidden = false;
|
||||||
|
git-ignore = true;
|
||||||
|
git-global = true;
|
||||||
|
git-exclude = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Show whitespace visible to the user
|
# Show whitespace visible to the user
|
||||||
# Waiting for trailing whitespace option ideally
|
# Waiting for trailing whitespace option ideally
|
||||||
whitespace = {
|
whitespace = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user