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