diff --git a/init.lua b/init.lua index cbaf0400..bd5c049b 100644 --- a/init.lua +++ b/init.lua @@ -147,9 +147,48 @@ require('lazy').setup({ 'navarasu/onedark.nvim', priority = 1000, config = function() + require('onedark').setup { + transparent = true, + } vim.cmd.colorscheme 'onedark' end, }, + { + 'rebelot/kanagawa.nvim', + priority = 1000, + config = function() + -- wave / dragon / lotus + -- require("kanagawa").load("wave") + end, + }, + { + 'n1ghtmare/noirblaze-vim', + priority = 1000, + config = function() + -- vim.cmd.colorscheme 'noirblaze' + end, + }, + { + 'olivercederborg/poimandres.nvim', + lazy = false, + priority = 1000, + config = function() + require('poimandres').setup { } + end, + + -- optionally set the colorscheme within lazy config + init = function() + -- vim.cmd("colorscheme poimandres") + end + }, + { + 'ellisonleao/gruvbox.nvim', + priority = 1000, + config = function() + -- vim.o.background = "dark" -- or "light" for light mode + -- vim.cmd([[colorscheme gruvbox]]) + end, + }, { -- Set lualine as statusline @@ -459,7 +498,7 @@ local servers = { -- pyright = {}, -- rust_analyzer = {}, -- tsserver = {}, - -- html = { filetypes = { 'html', 'blade' } }, + -- intelephense = { filetypes = { 'blade' } }, lua_ls = { Lua = { @@ -552,3 +591,15 @@ vim.keymap.set("n", "x", vim.cmd.Ex) -- open fugitive in vertical split vim.keymap.set('n', 'gs', ':vertical G') + +-- transparent bg +require("transparent").setup({ -- Optional, you don't have to run setup. + groups = { -- table: default groups + 'Normal', 'NormalNC', 'Comment', 'Constant', 'Special', 'Identifier', + 'Statement', 'PreProc', 'Type', 'Underlined', 'Todo', 'String', 'Function', + 'Conditional', 'Repeat', 'Operator', 'Structure', 'LineNr', 'NonText', + 'SignColumn', 'CursorLineNr', 'EndOfBuffer', + }, + extra_groups = {}, -- table: additional groups that should be cleared + exclude_groups = {}, -- table: groups you don't want to clear +}) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 25d60b2f..cfd5bfdc 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -3,5 +3,10 @@ -- -- See the kickstart.nvim README for more information return { + -- toggle diagnostics visibility 'WhoIsSethDaniel/toggle-lsp-diagnostics.nvim', + -- blade support + 'jwalton512/vim-blade', + -- transparent bg + 'xiyaowong/transparent.nvim', }