diff --git a/lazy-lock.json b/lazy-lock.json index 1a639c2..7281a3f 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -11,7 +11,7 @@ "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, "code_runner.nvim": { "branch": "main", "commit": "6c5bfe44a6c7523350cd706e6b3b8101166eed99" }, "codeium.nvim": { "branch": "main", "commit": "d3b88eb3aa1de6da33d325c196b8a41da2bcc825" }, - "dracula.nvim": { "branch": "main", "commit": "8d8bddb8814c3e7e62d80dda65a9876f97eb699c" }, + "darcula-dark.nvim": { "branch": "main", "commit": "cce636860dc5151b6980a35dd378f54a238e0f0e" }, "dressing.nvim": { "branch": "master", "commit": "572314728cb1ce012e825fd66331f52c94acac12" }, "friendly-snippets": { "branch": "main", "commit": "700c4a25caacbb4648c9a27972c2fe203948e0c2" }, "gitsigns.nvim": { "branch": "main", "commit": "76927d14d3fbd4ba06ccb5246e79d93b5442c188" }, @@ -37,7 +37,7 @@ "nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" }, "nvim-scrollview": { "branch": "main", "commit": "c29c5f69d37040a1fac88cbea7f5e6f06f0aff4d" }, "nvim-tree.lua": { "branch": "master", "commit": "2086e564c4d23fea714e8a6d63b881e551af2f41" }, - "nvim-treesitter": { "branch": "master", "commit": "26171d8f105d97746371d1b6c07c8d88bf13fec2" }, + "nvim-treesitter": { "branch": "master", "commit": "9636d5a3f4f531256fba147a30b882c44f28fae1" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "34867c69838078df7d6919b130c0541c0b400c47" }, "nvim-ts-autotag": { "branch": "main", "commit": "06fe07d7523ba8c755fac7c913fceba43b1720ee" }, "nvim-ts-context-commentstring": { "branch": "main", "commit": "cb064386e667def1d241317deed9fd1b38f0dc2e" }, diff --git a/lua/custom/default.lua b/lua/custom/default.lua index de4b0d4..30cde59 100644 --- a/lua/custom/default.lua +++ b/lua/custom/default.lua @@ -14,7 +14,7 @@ -- solarized-osaka -- darcula-dark -- juliana -vim.g.pcode_colorscheme = "dracula" +vim.g.pcode_colorscheme = "darcula-dark" -- 0 =off 1= on vim.g.pcode_transparent_mode = 0 diff --git a/lua/plugins/notify.lua b/lua/plugins/notify.lua index 2dfeeb1..af629f1 100644 --- a/lua/plugins/notify.lua +++ b/lua/plugins/notify.lua @@ -24,7 +24,8 @@ return { config = function() local notify = require "notify" -- this for transparency - notify.setup { background_colour = "#000000", render = "compact" } + -- notify.setup { background_colour = "#000000", render = "compact" } + notify.setup { render = "compact" } -- this overwrites the vim notify function vim.notify = notify.notify end,