space q will close the application if all buffers are saved, otherwise a dialog box shows up with the buffers that are not saved.
22 lines
553 B
Nix
22 lines
553 B
Nix
_: {
|
|
vim = {
|
|
languages.lua.enable = false; # broken
|
|
options.linebreak = true;
|
|
git.gitsigns.setupOpts = {
|
|
current_line_blame = false;
|
|
current_line_blame_opts = {
|
|
virt_text = true;
|
|
virt_text_pos = "right_align";
|
|
delay = 25;
|
|
ignore_whitespace = true;
|
|
virt_text_priority = 100;
|
|
use_focus = true;
|
|
};
|
|
};
|
|
# filetree.neo-tree.setupOpts.default_component_configs.indent = {
|
|
# padding = 0;
|
|
# indent_marker = "|";
|
|
# last_indent_marker = "+";
|
|
# };
|
|
};
|
|
}
|