mirror of
https://github.com/aljazceru/omakub.git
synced 2026-02-22 12:44:21 +01:00
Revert "Merge pull request #71 from 2KAbhishek/feat/transparent-neovim-bg"
This reverts commit7230d4ecaf, reversing changes made to2a63d60da1.
This commit is contained in:
@@ -4,7 +4,6 @@ sudo apt install -y neovim
|
||||
|
||||
if [ ! -d "$HOME/.config/nvim" ]; then
|
||||
git clone https://github.com/LazyVim/starter ~/.config/nvim
|
||||
cp ~/.local/share/omakub/themes/neovim/commons.lua ~/.config/nvim/lua/plugins/
|
||||
cp ~/.local/share/omakub/themes/neovim/tokyo-night.lua ~/.config/nvim/lua/plugins/theme.lua
|
||||
|
||||
# Enable default extras
|
||||
|
||||
@@ -4,7 +4,6 @@ return {
|
||||
opts = {
|
||||
transparent_background = true,
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
local commons = {}
|
||||
|
||||
commons.set_transparent_bg = function()
|
||||
-- transparent background
|
||||
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'FloatBorder', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'Pmenu', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'Terminal', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'EndOfBuffer', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'FoldColumn', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'Folded', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'SignColumn', { bg = 'none' })
|
||||
|
||||
-- transparent background for neotree
|
||||
vim.api.nvim_set_hl(0, 'NeoTreeNormal', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NeoTreeNormalNC', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NeoTreeVertSplit', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NeoTreeWinSeparator', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NeoTreeEndOfBuffer', { bg = 'none' })
|
||||
|
||||
-- transparent background for nvim-tree
|
||||
vim.api.nvim_set_hl(0, 'NvimTreeNormal', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NvimTreeVertSplit', { bg = 'none' })
|
||||
vim.api.nvim_set_hl(0, 'NvimTreeEndOfBuffer', { bg = 'none' })
|
||||
|
||||
-- hides `~` at the end of the buffer
|
||||
vim.cmd([[set fillchars+=eob:\ ]])
|
||||
end
|
||||
|
||||
return commons
|
||||
@@ -6,6 +6,5 @@ return {
|
||||
colorscheme = "everforest",
|
||||
background = "soft",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
}
|
||||
|
||||
@@ -5,6 +5,5 @@ return {
|
||||
opts = {
|
||||
colorscheme = "gruvbox",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
}
|
||||
|
||||
@@ -5,6 +5,5 @@ return {
|
||||
opts = {
|
||||
colorscheme = "kanagawa",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
}
|
||||
|
||||
@@ -5,6 +5,5 @@ return {
|
||||
opts = {
|
||||
colorscheme = "nord",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
}
|
||||
|
||||
@@ -5,6 +5,5 @@ return {
|
||||
opts = {
|
||||
colorscheme = "rose-pine-dawn",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ return {
|
||||
sidebars = "transparent",
|
||||
floats = "transparent",
|
||||
},
|
||||
config = require('plugins.commons').set_transparent_bg()
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user