common: changed theme and added glow
This commit is contained in:
		@@ -1,12 +1,15 @@
 | 
				
			|||||||
return {
 | 
					return {
 | 
				
			||||||
  -- NOTE: Theme
 | 
					  -- NOTE: Theme
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    'ellisonleao/gruvbox.nvim',
 | 
					    'sainnhe/gruvbox-material',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    priority = 1000,
 | 
					    priority = 1000,
 | 
				
			||||||
    config = function()
 | 
					    config = function()
 | 
				
			||||||
      require('gruvbox').setup({ contrast = 'soft', italic = false })
 | 
					      vim.g.gruvbox_material_background = 'soft'
 | 
				
			||||||
      vim.cmd.colorscheme 'gruvbox'
 | 
					      vim.g.gruvbox_material_foreground = 'original'
 | 
				
			||||||
 | 
					      vim.g.gruvbox_material_better_performance = 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      vim.cmd.colorscheme 'gruvbox-material'
 | 
				
			||||||
    end,
 | 
					    end,
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -19,7 +22,7 @@ return {
 | 
				
			|||||||
  -- Detect tabstop and shiftwidth automatically
 | 
					  -- Detect tabstop and shiftwidth automatically
 | 
				
			||||||
  'tpope/vim-sleuth',
 | 
					  'tpope/vim-sleuth',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  -- NOTE: Second, plugins that require setup call
 | 
					  -- NOTE: Second, plugins that require setup call (done via opts)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  -- Useful plugin to show you pending keybinds.
 | 
					  -- Useful plugin to show you pending keybinds.
 | 
				
			||||||
  { 'folke/which-key.nvim',        opts = {} },
 | 
					  { 'folke/which-key.nvim',        opts = {} },
 | 
				
			||||||
@@ -33,6 +36,9 @@ return {
 | 
				
			|||||||
  -- highlighting for comments
 | 
					  -- highlighting for comments
 | 
				
			||||||
  { "folke/todo-comments.nvim",    dependencies = "nvim-lua/plenary.nvim", opts = {} },
 | 
					  { "folke/todo-comments.nvim",    dependencies = "nvim-lua/plenary.nvim", opts = {} },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  -- markdown preview using glow
 | 
				
			||||||
 | 
					  { "ellisonleao/glow.nvim",       config = true,                          cmd = "Glow" },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  -- NOTE: Third, plugins that require some setup, but not enugh for separate file
 | 
					  -- NOTE: Third, plugins that require some setup, but not enugh for separate file
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  { -- Adds git releated signs to the gutter, as well as utilities for managing changes
 | 
					  { -- Adds git releated signs to the gutter, as well as utilities for managing changes
 | 
				
			||||||
@@ -55,7 +61,7 @@ return {
 | 
				
			|||||||
    opts = {
 | 
					    opts = {
 | 
				
			||||||
      options = {
 | 
					      options = {
 | 
				
			||||||
        icons_enabled = false,
 | 
					        icons_enabled = false,
 | 
				
			||||||
        theme = 'gruvbox',
 | 
					        theme = 'gruvbox-material',
 | 
				
			||||||
        statusline_style = 'mix',
 | 
					        statusline_style = 'mix',
 | 
				
			||||||
        component_separators = '|',
 | 
					        component_separators = '|',
 | 
				
			||||||
        section_separators = '',
 | 
					        section_separators = '',
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user