colorschemes + tried transparent + harpoon
This commit is contained in:
parent
e9588d6ef1
commit
0fd8713805
35
init.lua
35
init.lua
|
@ -147,10 +147,11 @@ require('lazy').setup({
|
||||||
'navarasu/onedark.nvim',
|
'navarasu/onedark.nvim',
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require('onedark').setup {
|
--require('onedark').setup {
|
||||||
transparent = true,
|
-- style = 'deep',
|
||||||
}
|
-- transparent = true,
|
||||||
vim.cmd.colorscheme 'onedark'
|
--}
|
||||||
|
--vim.cmd.colorscheme 'onedark'
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -173,7 +174,7 @@ require('lazy').setup({
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require('poimandres').setup { }
|
-- require('poimandres').setup { }
|
||||||
end,
|
end,
|
||||||
|
|
||||||
-- optionally set the colorscheme within lazy config
|
-- optionally set the colorscheme within lazy config
|
||||||
|
@ -185,11 +186,24 @@ require('lazy').setup({
|
||||||
'ellisonleao/gruvbox.nvim',
|
'ellisonleao/gruvbox.nvim',
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
-- vim.o.background = "dark" -- or "light" for light mode
|
vim.o.background = "dark" -- or "light" for light mode
|
||||||
-- vim.cmd([[colorscheme gruvbox]])
|
vim.cmd([[colorscheme gruvbox]])
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'nyoom-engineering/oxocarbon.nvim',
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
--[[
|
||||||
|
vim.opt.background = "dark" -- set this to dark or light
|
||||||
|
vim.cmd.colorscheme "oxocarbon"
|
||||||
|
|
||||||
|
-- transparent
|
||||||
|
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||||
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||||
|
--]]
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
-- Set lualine as statusline
|
-- Set lualine as statusline
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
|
@ -197,7 +211,7 @@ require('lazy').setup({
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'onedark',
|
-- theme = 'onedark',
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
},
|
},
|
||||||
|
@ -261,6 +275,9 @@ require('lazy').setup({
|
||||||
--
|
--
|
||||||
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
||||||
{ import = 'custom.plugins' },
|
{ import = 'custom.plugins' },
|
||||||
|
|
||||||
|
-- jump between files
|
||||||
|
'ThePrimeagen/harpoon',
|
||||||
}, {})
|
}, {})
|
||||||
|
|
||||||
-- [[ Setting options ]]
|
-- [[ Setting options ]]
|
||||||
|
@ -593,6 +610,7 @@ vim.keymap.set("n", "<leader>x", vim.cmd.Ex)
|
||||||
vim.keymap.set('n', '<leader>gs', ':vertical G<CR>')
|
vim.keymap.set('n', '<leader>gs', ':vertical G<CR>')
|
||||||
|
|
||||||
-- transparent bg
|
-- transparent bg
|
||||||
|
--[[
|
||||||
require("transparent").setup({ -- Optional, you don't have to run setup.
|
require("transparent").setup({ -- Optional, you don't have to run setup.
|
||||||
groups = { -- table: default groups
|
groups = { -- table: default groups
|
||||||
'Normal', 'NormalNC', 'Comment', 'Constant', 'Special', 'Identifier',
|
'Normal', 'NormalNC', 'Comment', 'Constant', 'Special', 'Identifier',
|
||||||
|
@ -603,3 +621,4 @@ require("transparent").setup({ -- Optional, you don't have to run setup.
|
||||||
extra_groups = {}, -- table: additional groups that should be cleared
|
extra_groups = {}, -- table: additional groups that should be cleared
|
||||||
exclude_groups = {}, -- table: groups you don't want to clear
|
exclude_groups = {}, -- table: groups you don't want to clear
|
||||||
})
|
})
|
||||||
|
--]]
|
||||||
|
|
Loading…
Reference in New Issue