added dressing.nvim.
This commit is contained in:
parent
17db4b6f8e
commit
2daf8eb0f9
|
@ -35,6 +35,8 @@
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
VISUAL = "nvim";
|
VISUAL = "nvim";
|
||||||
|
PIPENV_VENV_IN_PROJECT = 1;
|
||||||
|
POETRY_VIRTUALENVS_IN_PROJECT = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionPath = [
|
home.sessionPath = [
|
||||||
|
|
|
@ -110,6 +110,8 @@ $env.PATH = ($env.PATH | uniq)
|
||||||
|
|
||||||
$env.EDITOR = nvim
|
$env.EDITOR = nvim
|
||||||
$env.VISUAL = nvim
|
$env.VISUAL = nvim
|
||||||
|
$env.PIPENV_VENV_IN_PROJECT = 1
|
||||||
|
$env.POETRY_VIRTUALENVS_IN_PROJECT = 1
|
||||||
$env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent"
|
$env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent"
|
||||||
|
|
||||||
ls (($nu.default-config-dir | path join ('scripts/**/*.nu')) | into glob) |
|
ls (($nu.default-config-dir | path join ('scripts/**/*.nu')) | into glob) |
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
extraPlugins = [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
pkgs.vimPlugins.outline-nvim
|
outline-nvim
|
||||||
];
|
];
|
||||||
extraConfigLua = ''require("outline").setup({})'';
|
extraConfigLua = ''require("outline").setup({})'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,8 +12,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
addDefaultMappings = true;
|
addDefaultMappings = true;
|
||||||
};
|
};
|
||||||
extraPlugins = [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
pkgs.vimPlugins.vim-numbertoggle
|
vim-numbertoggle
|
||||||
|
dressing-nvim
|
||||||
];
|
];
|
||||||
|
extraConfigLua = ''require("dressing").setup({})'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
extraPlugins = [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
pkgs.vimPlugins.aerial-nvim
|
aerial-nvim
|
||||||
];
|
];
|
||||||
extraConfigLua = ''require("aerial").setup({})'';
|
extraConfigLua = ''require("aerial").setup({})'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
};
|
};
|
||||||
plugins.treesitter-context.enable = true;
|
plugins.treesitter-context.enable = true;
|
||||||
plugins.indent-blankline.enable = true;
|
plugins.indent-blankline.enable = true;
|
||||||
extraPlugins = [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
pkgs.vimPlugins.treesj
|
treesj
|
||||||
];
|
];
|
||||||
extraConfigLua = ''require("treesj").setup({})'';
|
extraConfigLua = ''require("treesj").setup({})'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue