update: nvim: add load condition to term_powershell
This commit is contained in:
parent
700cecd2ae
commit
b2978b4fd2
1 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,9 @@ require('lazy').setup({
|
||||||
{ "catppuccin/nvim", name = "catppuccin" }, -- Color scheme
|
{ "catppuccin/nvim", name = "catppuccin" }, -- Color scheme
|
||||||
{
|
{
|
||||||
dir = "./lua/term_powershell.lua",
|
dir = "./lua/term_powershell.lua",
|
||||||
|
cond = function()
|
||||||
|
return vim.fn.has('win32') == 1
|
||||||
|
end,
|
||||||
event = "CmdlineEnter",
|
event = "CmdlineEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("term_powershell").setup {
|
require("term_powershell").setup {
|
||||||
|
|
Loading…
Reference in a new issue