🎨 ux(nvim): disable neogit colorscheme integration and terminal backdrop
This commit is contained in:
parent
7a41b4683e
commit
f61af27cdb
2 changed files with 4 additions and 4 deletions
|
@ -191,11 +191,11 @@ map("n", "<leader>@", "zug", { desc = "Remove Word from Dictionary" })
|
|||
-- Terminal Stuff
|
||||
if not LazyVim.has("floaterm.nvim") or not LazyVim.has("toggleterm.nvim") then
|
||||
local lazyterm = function()
|
||||
LazyVim.terminal(nil, { backdrop = 90.0, size = { width = 0.8, height = 0.8 }, cwd = LazyVim.root() })
|
||||
LazyVim.terminal(nil, { size = { width = 0.8, height = 0.8 }, cwd = LazyVim.root() })
|
||||
end
|
||||
map("n", "<leader>ft", lazyterm, { desc = "Terminal (Root Dir)" })
|
||||
map("n", "<leader>fT", function()
|
||||
LazyVim.terminal(nil, { backdrop = 90.0, size = { width = 0.8, height = 0.8 }, cwd = vim.fn.getcwd() })
|
||||
LazyVim.terminal(nil, { size = { width = 0.8, height = 0.8 }, cwd = vim.fn.getcwd() })
|
||||
end, { desc = "Terminal (cwd)" })
|
||||
map("n", [[<c-\>]], lazyterm, { desc = "Terminal (Root Dir)" })
|
||||
map("t", [[<c-\>]], "<cmd>close<cr>", { desc = "Hide Terminal" })
|
||||
|
@ -229,7 +229,7 @@ map("n", "go", "<Cmd>call append(line('.'), repeat([''], v:count1))<CR>", { desc
|
|||
map({ "c", "i", "t" }, "<M-BS>", "<C-w>", { desc = "Delete Word" })
|
||||
|
||||
-- Git
|
||||
map("n", "<leader>ghB", LazyVim.lazygit.blame_line, { desc = "Blame Line (LazyGit)" })
|
||||
map("n", "<leader>ghb", LazyVim.lazygit.blame_line, { desc = "Blame Line" })
|
||||
|
||||
-- Windows Split
|
||||
map("n", "<leader>_", "<C-W>s", { desc = "Split Window Below", remap = true })
|
||||
|
|
|
@ -84,7 +84,7 @@ return {
|
|||
lsp_trouble = false,
|
||||
navic = { enabled = false, custom_bg = "lualine" },
|
||||
neotest = true,
|
||||
neogit = true,
|
||||
neogit = false,
|
||||
neotree = true,
|
||||
notify = true,
|
||||
noice = true,
|
||||
|
|
Loading…
Add table
Reference in a new issue