[neovim] stuff

This commit is contained in:
seajee
2025-04-02 00:27:11 +02:00
parent 69f318ad02
commit 294a23549a

View File

@@ -7,9 +7,6 @@ vim.g.maplocalleader = " "
-- Fat cursor -- Fat cursor
-- vim.opt.guicursor = "" -- vim.opt.guicursor = ""
-- Colorscheme
vim.cmd.colorscheme("murphy")
-- Make relative line numbers default -- Make relative line numbers default
vim.opt.number = true vim.opt.number = true
vim.opt.relativenumber = true vim.opt.relativenumber = true
@@ -229,6 +226,36 @@ require("lazy").setup({
end end
}, },
-- Colorscheme
{
"Yagua/nebulous.nvim",
config = function()
require("nebulous").setup({
variant = "fullmoon",
disable = {
background = false,
endOfBuffer = false,
terminal_colors = true,
},
italic = {
comments = false,
keywords = true,
functions = false,
variables = false,
},
custom_colors = { -- this table can hold any group of colors with their respective values
LineNr = { fg = "#5BBBDA", bg = "NONE", style = "NONE" },
CursorLineNr = { fg = "#E1CD6C", bg = "NONE", style = "NONE" },
-- it is possible to specify only the element to be changed
TelescopePreviewBorder = { fg = "#A13413" },
LspDiagnosticsDefaultError = { bg = "#E11313" },
TSTagDelimiter = { style = "bold,italic" },
}
})
end
},
-- Transparency -- Transparency
{ "xiyaowong/transparent.nvim" }, { "xiyaowong/transparent.nvim" },
@@ -265,7 +292,6 @@ require("lazy").setup({
}, },
-- LSP -- LSP
--[[
{ {
"VonHeikemen/lsp-zero.nvim", "VonHeikemen/lsp-zero.nvim",
dependencies = { dependencies = {
@@ -322,5 +348,4 @@ require("lazy").setup({
}) })
end end
} }
]]--
}) })