Small changes

This commit is contained in:
2025-07-31 18:38:34 +02:00
parent 91735f4a8d
commit a37eb05681
2 changed files with 9 additions and 10 deletions

View File

@@ -1,5 +1,4 @@
local g = vim.g local g = vim.g
local o = vim.o
local opt = vim.opt local opt = vim.opt
opt.fillchars = "eob: " opt.fillchars = "eob: "
@@ -12,7 +11,7 @@ g.maplocalleader = "."
opt.foldmethod = "expr" opt.foldmethod = "expr"
opt.foldexpr = "nvim_treesitter#foldexpr()" opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.opt.foldenable = false opt.foldenable = false
opt.nu = true opt.nu = true
opt.relativenumber = true opt.relativenumber = true
@@ -50,11 +49,11 @@ opt.updatetime = 50
-- windows -- windows
if vim.fn.has("win32") == 1 then if vim.fn.has("win32") == 1 then
o.shell = "pwsh -nologo" opt.shell = "pwsh -nologo"
o.shellcmdflag = opt.shellcmdflag =
"-NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command [Console]::InputEncoding=[Console]::OutputEncoding=[System.Text.Encoding]::UTF8;" "-NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command [Console]::InputEncoding=[Console]::OutputEncoding=[System.Text.Encoding]::UTF8;"
o.shellredir = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode" opt.shellredir = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
o.shellpipe = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode" opt.shellpipe = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
o.shellquote = "" opt.shellquote = ""
o.shellxquote = "" opt.shellxquote = ""
end end

View File

@@ -24,7 +24,7 @@ function M.themeselector(opts)
vim.cmd("SunglassesDisable") vim.cmd("SunglassesDisable")
pickers pickers
.new(combined, { :new(vim.tbl_deep_extend("force", {
prompt_title = "Colorscheme", prompt_title = "Colorscheme",
finder = finders.new_table({ finder = finders.new_table({
results = themes, results = themes,
@@ -58,7 +58,7 @@ function M.themeselector(opts)
}) })
return true return true
end, end,
}) }, combined))
:find() :find()
end end