Skip to content

Commit

Permalink
move away from nu as default
Browse files Browse the repository at this point in the history
  • Loading branch information
chris468 committed Jul 7, 2024
1 parent 791a141 commit 0a017a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dotfiles/.chezmoitemplates/configDefaults
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ packageManager:
enable: false

windowsTerminal:
defaultProfile: "{47302f9c-1ac4-566c-aa3e-8cf29889d6ab}"
defaultProfile: Git Bash

nvim:
flavor: ""
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ local terminal_id = {
chezmoi = 3,
}

local function nu_or_default()
local nu_path = vim.fn.exepath("nu")
if nu_path == "" then
return nil
end
return nu_path .. " -i"
end
-- local function nu_or_default()
-- local nu_path = vim.fn.exepath("nu")
-- if nu_path == "" then
-- return nil
-- end
-- return nu_path .. " -i"
-- end

local terminals = {
default = {
id = terminal_id.default,
cmd = nu_or_default(),
-- cmd = nu_or_default(),
display_name = "Terminal",
},
lazygit = {
Expand Down

0 comments on commit 0a017a5

Please sign in to comment.