This commit is contained in:
asep komarudin 2023-02-19 12:18:29 +07:00
parent 6e3f5695b0
commit d11d8e2e79
4 changed files with 13 additions and 11 deletions

View file

@ -35,7 +35,7 @@
"nvim-navic": { "branch": "master", "commit": "7e9d2b2b601149fecdccd11b516acb721e571fe6" }, "nvim-navic": { "branch": "master", "commit": "7e9d2b2b601149fecdccd11b516acb721e571fe6" },
"nvim-notify": { "branch": "master", "commit": "bdd647f61a05c9b8a57c83b78341a0690e9c29d7" }, "nvim-notify": { "branch": "master", "commit": "bdd647f61a05c9b8a57c83b78341a0690e9c29d7" },
"nvim-scrollview": { "branch": "main", "commit": "ba6c48bf7919dd48a371e7b9c683b8858053e885" }, "nvim-scrollview": { "branch": "main", "commit": "ba6c48bf7919dd48a371e7b9c683b8858053e885" },
"nvim-tree.lua": { "branch": "master", "commit": "08a0aa1a3b7411ee0a7887c8818528b1558cef96" }, "nvim-tree.lua": { "branch": "master", "commit": "bcb969c8692bd79a3b34658436e679f3bf784b92" },
"nvim-treesitter": { "branch": "master", "commit": "ad9ae9e7def54fee446c3e186ed0a0d44cca7b90" }, "nvim-treesitter": { "branch": "master", "commit": "ad9ae9e7def54fee446c3e186ed0a0d44cca7b90" },
"nvim-ts-autotag": { "branch": "main", "commit": "fdefe46c6807441460f11f11a167a2baf8e4534b" }, "nvim-ts-autotag": { "branch": "main", "commit": "fdefe46c6807441460f11f11a167a2baf8e4534b" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "a0f89563ba36b3bacd62cf967b46beb4c2c29e52" }, "nvim-ts-context-commentstring": { "branch": "main", "commit": "a0f89563ba36b3bacd62cf967b46beb4c2c29e52" },

View file

@ -1,11 +1,11 @@
local onsave = true local onsave = true
require("user.options")
require("config.lazy") require("config.lazy")
require("user.options")
require("user.keymaps") require("user.keymaps")
require("user.autocommands") require("user.autocommands")
require("user.colorscheme") -- require("user.colorscheme")
require("user.snip") -- require("user.snip")
require("user.bufferline") -- require("user.bufferline")
if onsave then if onsave then
require("user.format_onsave") require("user.format_onsave")
end end

View file

@ -42,6 +42,7 @@ return {
"rafamadriz/friendly-snippets", "rafamadriz/friendly-snippets",
config = function() config = function()
require("luasnip.loaders.from_vscode").lazy_load() require("luasnip.loaders.from_vscode").lazy_load()
require("user.snip")
end, end,
}, },
opts = { opts = {

View file

@ -3,8 +3,8 @@ return {
{ {
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
-- commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764", -- commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764",
lazy = true, -- make sure we load this during startup if it is your main colorscheme 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 priority = 1000, -- make sure to load this before all the other start plugins
config = function() config = function()
local is_transparant = false local is_transparant = false
if is_transparant then if is_transparant then
@ -12,6 +12,7 @@ return {
else else
require("user.tokyonight") require("user.tokyonight")
end end
require("user.colorscheme")
end, end,
}, },
-- { -- {
@ -124,10 +125,10 @@ return {
}, },
{ {
"akinsho/bufferline.nvim", "akinsho/bufferline.nvim",
event = "BufRead", event = "BufWinEnter",
-- config = function() config = function()
-- require("user.bufferline") require("user.bufferline")
-- end, end,
}, },
-- for delete buffers (close files) without closing your windows or messing up your layout. -- for delete buffers (close files) without closing your windows or messing up your layout.
{ "moll/vim-bbye", event = "BufRead" }, { "moll/vim-bbye", event = "BufRead" },