full vim only with display
This commit is contained in:
parent
473f015225
commit
5d49e7a766
1 changed files with 2 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, osConfig, ... }:
|
||||||
{
|
{
|
||||||
programs.vim = {
|
programs.vim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
packageConfigurable = if osConfig.services.displayManager.enable then pkgs.vim-full else pkgs.vim;
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
vim-sensible
|
vim-sensible
|
||||||
vim-fugitive
|
vim-fugitive
|
||||||
|
|
Loading…
Reference in a new issue