Merge branch 'main' into feature/custom-keybinds

This commit is contained in:
Michał 2023-05-03 00:18:25 +02:00 committed by GitHub
commit 933fa2a8ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 190 additions and 130 deletions

View file

@ -133,8 +133,8 @@ in {
set termguicolors
set t_Co=256
''}
${optionalString cfg.enableEditorconfig ''
vim.g.editorconfig = false
${optionalString (!cfg.enableEditorconfig) ''
let g:editorconfig = v:false
''}
'';
};

View file

@ -141,7 +141,7 @@ with builtins; {
};
enableEditorconfig = mkOption {
type = types.bool;
default = false;
default = true;
description = "Follow editorconfig rules in current directory";
};
};