mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
update
This commit is contained in:
parent
6e3f5695b0
commit
d11d8e2e79
4 changed files with 13 additions and 11 deletions
|
@ -1,11 +1,11 @@
|
|||
local onsave = true
|
||||
require("user.options")
|
||||
require("config.lazy")
|
||||
require("user.options")
|
||||
require("user.keymaps")
|
||||
require("user.autocommands")
|
||||
require("user.colorscheme")
|
||||
require("user.snip")
|
||||
require("user.bufferline")
|
||||
-- require("user.colorscheme")
|
||||
-- require("user.snip")
|
||||
-- require("user.bufferline")
|
||||
if onsave then
|
||||
require("user.format_onsave")
|
||||
end
|
||||
|
|
|
@ -42,6 +42,7 @@ return {
|
|||
"rafamadriz/friendly-snippets",
|
||||
config = function()
|
||||
require("luasnip.loaders.from_vscode").lazy_load()
|
||||
require("user.snip")
|
||||
end,
|
||||
},
|
||||
opts = {
|
||||
|
|
|
@ -3,8 +3,8 @@ return {
|
|||
{
|
||||
"folke/tokyonight.nvim",
|
||||
-- commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764",
|
||||
lazy = true, -- make sure we load this during startup if it is your main colorscheme
|
||||
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
local is_transparant = false
|
||||
if is_transparant then
|
||||
|
@ -12,6 +12,7 @@ return {
|
|||
else
|
||||
require("user.tokyonight")
|
||||
end
|
||||
require("user.colorscheme")
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
|
@ -124,10 +125,10 @@ return {
|
|||
},
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
event = "BufRead",
|
||||
-- config = function()
|
||||
-- require("user.bufferline")
|
||||
-- end,
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
require("user.bufferline")
|
||||
end,
|
||||
},
|
||||
-- for delete buffers (close files) without closing your windows or messing up your layout.
|
||||
{ "moll/vim-bbye", event = "BufRead" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue