diff --git a/lua/Judokasarin/plugins/bufferline.lua b/lua/Judokasarin/plugins/bufferline.lua new file mode 100644 index 00000000..262d076d --- /dev/null +++ b/lua/Judokasarin/plugins/bufferline.lua @@ -0,0 +1,11 @@ +-- return { +-- 'akinsho/bufferline.nvim', +-- version = "*", +-- dependencies = 'nvim-tree/nvim-web-devicons', +-- opts = { +-- options = { +-- mode = "buffers", +-- separator_style = "slant", +-- } +-- } +-- } diff --git a/lua/Judokasarin/plugins/color.lua b/lua/Judokasarin/plugins/color.lua index a73c72f0..e8b15904 100644 --- a/lua/Judokasarin/plugins/color.lua +++ b/lua/Judokasarin/plugins/color.lua @@ -1,42 +1,41 @@ return { -- You can easily change to a different colorscheme. - -- Change the name of the colorscheme plugin below, and then - -- change the command in the config to whatever the name of that colorscheme is - -- - -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme` - 'ellisonleao/gruvbox.nvim', - 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 - opts = { - terminal_colors = true, -- add neovim terminal colors - undercurl = true, - underline = true, - bold = true, - italic = { - strings = true, - emphasis = true, - comments = true, - operators = false, - folds = true, - }, - strikethrough = true, - invert_selection = false, - invert_signs = false, - invert_tabline = false, - invert_intend_guides = false, - inverse = true, -- invert background for search, diffs, statuslines and errors - contrast = "", -- can be "hard", "soft" or empty string - palette_overrides = {}, - overrides = {}, - dim_inactive = false, - transparent_mode = false, + -- Change the name of the colorscheme plugin below, and then + -- change the command in the config to whatever the name of that colorscheme is + -- + -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme` + 'ellisonleao/gruvbox.nvim', + 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 + opts = { + terminal_colors = true, -- add neovim terminal colors + undercurl = true, + underline = true, + bold = true, + italic = { + strings = true, + emphasis = true, + comments = true, + operators = false, + folds = true, }, - config = function() - -- Load the colorscheme here - vim.cmd.colorscheme 'gruvbox' - vim.o.background = 'dark' - - -- You can configure highlights by doing something like - vim.cmd.hi 'Comment gui=none' - end, - } + strikethrough = true, + invert_selection = false, + invert_signs = false, + invert_tabline = false, + invert_intend_guides = false, + inverse = true, -- invert background for search, diffs, statuslines and errors + contrast = "", -- can be "hard", "soft" or empty string + palette_overrides = {}, + overrides = {}, + dim_inactive = false, + transparent_mode = false, + }, + init = function() + -- Load the colorscheme here + vim.cmd.colorscheme 'gruvbox' + vim.o.background = 'dark' + -- You can configure highlights by doing something like + vim.cmd.hi 'Comment gui=none' + end, +}