style: add transparent background for nvimBufferline
- remove duplicated file (davinci.nix)
This commit is contained in:
parent
69705431bf
commit
8de4592eb5
3 changed files with 11 additions and 18 deletions
|
|
@ -132,6 +132,7 @@ in
|
||||||
misc = {
|
misc = {
|
||||||
disable_hyprland_logo = true;
|
disable_hyprland_logo = true;
|
||||||
force_default_wallpaper = 0;
|
force_default_wallpaper = 0;
|
||||||
|
disable_splash_rendering = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// (import ./hypr/window.nix { inherit lib; })
|
// (import ./hypr/window.nix { inherit lib; })
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib.generators) mkLuaInline;
|
inherit (lib.generators) mkLuaInline;
|
||||||
|
inherit (lib) concatStringsSep;
|
||||||
|
|
||||||
suda-nvim = pkgs.vimUtils.buildVimPlugin {
|
suda-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||||
name = "vim-suda";
|
name = "vim-suda";
|
||||||
|
|
@ -47,6 +48,11 @@ in
|
||||||
transparent = {
|
transparent = {
|
||||||
package = transparent-nvim;
|
package = transparent-nvim;
|
||||||
setup =
|
setup =
|
||||||
|
let
|
||||||
|
clearFg = map (x: ''vim.api.nvim_set_hl(0, "${x}", { fg = "NONE", bg = "NONE"})'') [
|
||||||
|
"TabLineFill"
|
||||||
|
];
|
||||||
|
in
|
||||||
# lua
|
# lua
|
||||||
''
|
''
|
||||||
require("transparent").setup({
|
require("transparent").setup({
|
||||||
|
|
@ -70,7 +76,6 @@ in
|
||||||
"DiffText",
|
"DiffText",
|
||||||
"DiffViewNormal",
|
"DiffViewNormal",
|
||||||
"CursorColumn",
|
"CursorColumn",
|
||||||
"ColorColumn",
|
|
||||||
"QuickFixLine",
|
"QuickFixLine",
|
||||||
"Error",
|
"Error",
|
||||||
"NoiceScrollbar"
|
"NoiceScrollbar"
|
||||||
|
|
@ -78,6 +83,9 @@ in
|
||||||
})
|
})
|
||||||
require("transparent").clear_prefix("NeoTree")
|
require("transparent").clear_prefix("NeoTree")
|
||||||
require("transparent").clear_prefix("GitGutter")
|
require("transparent").clear_prefix("GitGutter")
|
||||||
|
require("transparent").clear_prefix("BufferLine")
|
||||||
|
|
||||||
|
${concatStringsSep "\n" clearFg}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
suda = {
|
suda = {
|
||||||
|
|
@ -460,7 +468,7 @@ in
|
||||||
setupOpts = {
|
setupOpts = {
|
||||||
options = {
|
options = {
|
||||||
show_close_icon = false;
|
show_close_icon = false;
|
||||||
separator_style = "slope";
|
separator_style = "thin";
|
||||||
numbers = "none";
|
numbers = "none";
|
||||||
indicator = {
|
indicator = {
|
||||||
style = "none";
|
style = "none";
|
||||||
|
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
let
|
|
||||||
in
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
davinci-resolve
|
|
||||||
];
|
|
||||||
|
|
||||||
hardware.graphics = {
|
|
||||||
enable = true;
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
intel-compute-runtime
|
|
||||||
rocmPackages.clr.icd
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue