just some changes
This commit is contained in:
parent
597de90d41
commit
fac895e919
3 changed files with 2 additions and 13 deletions
|
|
@ -32,7 +32,7 @@ vim.o.ic = true
|
||||||
|
|
||||||
-- make windows look nice wrapped in pcall cause it's causing my setup to go
|
-- make windows look nice wrapped in pcall cause it's causing my setup to go
|
||||||
-- bezerk inside of git commit buffers
|
-- bezerk inside of git commit buffers
|
||||||
pcall(function() vim.o.winborder = '▄,▄,▄,█,▀,▀,▀,█' end)
|
pcall(function() vim.o.winborder = 'solid' end)
|
||||||
|
|
||||||
-- wild menus
|
-- wild menus
|
||||||
vim.o.ph = 20
|
vim.o.ph = 20
|
||||||
|
|
@ -44,8 +44,6 @@ vim.o.wim = "noselect:lastused,full"
|
||||||
vim.o.cpt = ".,w,b,u,d,i"
|
vim.o.cpt = ".,w,b,u,d,i"
|
||||||
vim.o.cot = "menu,menuone,noinsert,fuzzy,popup"
|
vim.o.cot = "menu,menuone,noinsert,fuzzy,popup"
|
||||||
vim.o.cia = "kind,abbr,menu"
|
vim.o.cia = "kind,abbr,menu"
|
||||||
-- waiting for https://github.com/neovim/neovim/pull/25541 to land
|
|
||||||
-- vim.o.completepopup = "border:"..vim.o.winborder
|
|
||||||
|
|
||||||
do -- statusline
|
do -- statusline
|
||||||
---@return string out formatted status line
|
---@return string out formatted status line
|
||||||
|
|
|
||||||
|
|
@ -129,13 +129,4 @@ return {
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "mfussenegger/nvim-dap-python",
|
|
||||||
reqs = "mfussenegger/nvim-dap",
|
|
||||||
lazy = dep_short.ft("python"),
|
|
||||||
load = function()
|
|
||||||
local debugpy = core.mason.get_pkg_path("debugpy", "/venv/bin/python3")
|
|
||||||
require("dap-python").setup(debugpy)
|
|
||||||
end
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ return { "mellow-theme/mellow.nvim",
|
||||||
|
|
||||||
-- make floats darker
|
-- make floats darker
|
||||||
["NormalFloat"] = { fg = c.fg, bg = "#111111" },
|
["NormalFloat"] = { fg = c.fg, bg = "#111111" },
|
||||||
["FloatBorder"] = { fg = "#111111" },
|
["FloatBorder"] = { bg = "#111111" },
|
||||||
|
|
||||||
-- Make pmenu look good
|
-- Make pmenu look good
|
||||||
["Pmenu"] = { link = "NormalFloat" },
|
["Pmenu"] = { link = "NormalFloat" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue