fix: init.lua

This commit is contained in:
Tevin79 2025-04-18 08:59:10 +02:00
parent 3b0cd4aedb
commit 89dad836a2
1 changed files with 512 additions and 519 deletions

View File

@ -169,7 +169,7 @@ vim.opt.rtp:prepend(lazypath)
-- :Lazy update
--
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
require('lazy').setup {
{
'rose-pine/neovim',
@ -292,7 +292,6 @@ require('lazy').setup({
{ 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font },
},
config = function()
-- [[ Configure Telescope ]]
require('telescope').setup {
extensions = {
@ -582,8 +581,7 @@ require('lazy').setup({
end
return 'make install_jsregexp'
end)(),
dependencies = {
},
dependencies = {},
opts = {},
},
'folke/lazydev.nvim',
@ -592,7 +590,7 @@ require('lazy').setup({
--- @type blink.cmp.Config
opts = {
keymap = {
preset = 'default'
preset = 'default',
},
appearance = {
@ -666,7 +664,6 @@ require('lazy').setup({
indent = { enable = true, disable = { 'ruby' } },
},
},
{
ui = {
icons = vim.g.have_nerd_font and {} or {
cmd = '',
@ -685,7 +682,6 @@ require('lazy').setup({
},
},
}
})
require('rose-pine').setup {
variant = 'auto', -- auto, main, moon, or dawn
@ -736,14 +732,11 @@ require('rose-pine').setup {
h6 = 'foam',
},
palette = {
},
palette = {},
highlight_groups = {
},
highlight_groups = {},
before_highlight = function(group, highlight, palette)
end,
before_highlight = function(group, highlight, palette) end,
}
vim.cmd 'colorscheme rose-pine'