new nvim cfg

This commit is contained in:
Hunter 2025-05-16 19:13:27 -04:00
parent 0e500b7d8f
commit 1c8f70a3a6
Signed by: hst
GPG key ID: 951D8B651E7DE6BE
7 changed files with 42 additions and 95 deletions

View file

@ -11,44 +11,19 @@ return {
end,
},
{
"thesimonho/kanagawa-paper.nvim",
"datsfilipe/vesper.nvim",
lazy = false,
enabled = false,
priority = 1000,
config = function()
require("kanagawa-paper").setup({})
require("vesper").setup({})
vim.cmd([[ colorscheme kanagawa-paper ]])
vim.cmd.colorscheme("vesper")
end,
},
{},
{
"savq/melange-nvim",
lazy = false,
enabled = false,
priority = 1000,
config = function()
vim.cmd([[ colorscheme melange ]])
end,
},
{
"maxmx03/solarized.nvim",
lazy = false,
priority = 1000,
enabled = false,
---@type solarized.config
"f-person/auto-dark-mode.nvim",
opts = {},
config = function(_, opts)
vim.o.termguicolors = true
require("solarized").setup(opts)
vim.cmd.colorscheme("solarized")
end,
},
{
"rose-pine/neovim",
name = "rose-pine",
lazy = false,
priority = 1000,
enabled = false,
config = function() end,
},
}

View file

@ -0,0 +1,11 @@
return {
{
"andweeb/presence.nvim",
lazy = false,
opts = function()
require("presence").setup({
neovim_image_text = "/usr/bin/nvim",
})
end,
},
}

View file

@ -48,7 +48,7 @@ return {
require("mason-lspconfig").setup({
automatic_installation = true,
ensure_installed = { "lua_ls", "rust_analyzer", "clangd", "cmake" },
ensure_installed = { "lua_ls", "rust_analyzer", "clangd", "cmake", "cssls", "html" },
})
require("mason-lspconfig").setup_handlers({

View file

@ -1,17 +0,0 @@
return {
{
"folke/snacks.nvim",
priority = 1000,
lazy = false,
enabled = false,
---@type snacks.Config
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
bigfile = { enabled = true },
dashboard = { enabled = true },
notifier = { enabled = true },
},
},
}