new nvim cfg
This commit is contained in:
parent
0e500b7d8f
commit
1c8f70a3a6
7 changed files with 42 additions and 95 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
vim.g.mapleader = "`"
|
||||
|
||||
-- Dont change cursor when entering insert mode
|
||||
-- Don't change cursor when entering insert mode
|
||||
vim.opt.guicursor = "i:block"
|
||||
|
||||
vim.opt.shiftwidth = 4
|
||||
|
@ -28,7 +28,7 @@ vim.o.cursorline = true
|
|||
|
||||
vim.opt.fillchars = { eob = " " }
|
||||
vim.o.clipboard = "unnamed"
|
||||
vim.o.background = "dark"
|
||||
vim.o.background = "light"
|
||||
|
||||
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions,globals"
|
||||
vim.o.swapfile = false
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
11
lua/hsta/plugins/discord.lua
Normal file
11
lua/hsta/plugins/discord.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
{
|
||||
"andweeb/presence.nvim",
|
||||
lazy = false,
|
||||
opts = function()
|
||||
require("presence").setup({
|
||||
neovim_image_text = "/usr/bin/nvim",
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
|
@ -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({
|
||||
|
|
|
@ -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 },
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue