format with stylua
This commit is contained in:
@ -2,7 +2,7 @@ return {
|
||||
'marko-cerovac/material.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local colors = require 'material.colors'
|
||||
local colors = require('material.colors')
|
||||
require('material').setup({
|
||||
|
||||
contrast = {
|
||||
@ -15,10 +15,14 @@ return {
|
||||
},
|
||||
|
||||
styles = { -- Give comments style such as bold, italic, underline etc.
|
||||
comments = { --[[ italic = true ]] },
|
||||
strings = { --[[ bold = true ]] },
|
||||
keywords = { --[[ underline = true ]] },
|
||||
functions = { --[[ bold = true, undercurl = true ]] },
|
||||
comments = { --[[ italic = true ]]
|
||||
},
|
||||
strings = { --[[ bold = true ]]
|
||||
},
|
||||
keywords = { --[[ underline = true ]]
|
||||
},
|
||||
functions = { --[[ bold = true, undercurl = true ]]
|
||||
},
|
||||
variables = {},
|
||||
operators = {},
|
||||
types = {},
|
||||
@ -26,23 +30,23 @@ return {
|
||||
|
||||
plugins = { -- Uncomment the plugins that you use to highlight them
|
||||
-- Available plugins:
|
||||
"dap",
|
||||
'dap',
|
||||
-- "dashboard",
|
||||
"gitsigns",
|
||||
'gitsigns',
|
||||
-- "hop",
|
||||
"indent-blankline",
|
||||
'indent-blankline',
|
||||
-- "lspsaga",
|
||||
-- "mini",
|
||||
-- "neogit",
|
||||
-- "neorg",
|
||||
"nvim-cmp",
|
||||
"nvim-navic",
|
||||
'nvim-cmp',
|
||||
'nvim-navic',
|
||||
-- "nvim-tree",
|
||||
"nvim-web-devicons",
|
||||
'nvim-web-devicons',
|
||||
-- "sneak",
|
||||
"telescope",
|
||||
'telescope',
|
||||
-- "trouble",
|
||||
"which-key",
|
||||
'which-key',
|
||||
},
|
||||
|
||||
disable = {
|
||||
@ -50,12 +54,12 @@ return {
|
||||
borders = false, -- Disable borders between verticaly split windows
|
||||
background = false, -- Prevent the theme from setting the background (NeoVim then uses your terminal background)
|
||||
term_colors = false, -- Prevent the theme from setting terminal colors
|
||||
eob_lines = false -- Hide the end-of-buffer lines
|
||||
eob_lines = false, -- Hide the end-of-buffer lines
|
||||
},
|
||||
|
||||
high_visibility = {
|
||||
lighter = false, -- Enable higher contrast text for lighter style
|
||||
darker = true-- Enable higher contrast text for darker style
|
||||
darker = true, -- Enable higher contrast text for darker style
|
||||
},
|
||||
|
||||
lualine_style = 'default', -- Lualine style ( can be 'stealth' or 'default' )
|
||||
@ -66,8 +70,8 @@ return {
|
||||
|
||||
custom_highlights = {}, -- Overwrite highlights with your own
|
||||
})
|
||||
vim.g.material_style = "darker"
|
||||
vim.g.material_style = 'darker'
|
||||
vim.cmd('colorscheme material')
|
||||
end,
|
||||
enabled = false
|
||||
enabled = false,
|
||||
}
|
||||
|
Reference in New Issue
Block a user