Compare commits
No commits in common. "5591af0b65caa46406ef57995ce05d02a69ee219" and "a416fa1a24bbf05510eabccb217896b3f0a664ff" have entirely different histories.
5591af0b65
...
a416fa1a24
@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
programs = {
|
||||
dconf.enable = true;
|
||||
@ -8,12 +8,7 @@
|
||||
enableGlobalCompInit = false;
|
||||
enableBashCompletion = true;
|
||||
};
|
||||
nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
stdenv.cc.cc
|
||||
];
|
||||
};
|
||||
nix-ld.enable = true;
|
||||
steam.enable = true;
|
||||
};
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
monitor = ,preferred,auto,auto
|
||||
monitor=eDP-1,preferred,0x0,1.5
|
||||
monitor=eDP-1,preferred,0x0,1.3333
|
||||
exec = systemd-run --user ~/.config/hypr/scripts/laptop-lid.bash
|
||||
bindl=,switch:off:Lid Switch,exec,systemd-run --user ~/.config/hypr/scripts/laptop-lid.bash
|
||||
bindl=,switch:on:Lid Switch,exec,systemd-run --user ~/.config/hypr/scripts/laptop-lid.bash
|
||||
|
@ -317,51 +317,6 @@ return {
|
||||
end,
|
||||
}
|
||||
|
||||
local cur_bufs = function()
|
||||
return vim.iter(vim.api.nvim_list_bufs())
|
||||
:filter(function(buf)
|
||||
return vim.fn.buflisted(buf) == 1
|
||||
end)
|
||||
:filter(vim.api.nvim_buf_is_loaded)
|
||||
:filter(vim.api.nvim_buf_is_valid)
|
||||
:totable()
|
||||
end
|
||||
|
||||
local Buffers = {
|
||||
update = { "BufNew", "VimEnter" },
|
||||
condition = function()
|
||||
return #cur_bufs() > 1
|
||||
end,
|
||||
{
|
||||
provider = seps.full.left,
|
||||
hl = { fg = colors.carpYellow, bg = utils.get_highlight("StatusLine").bg },
|
||||
},
|
||||
{
|
||||
provider = function()
|
||||
return vim.api.nvim_get_current_buf()
|
||||
end,
|
||||
hl = { fg = colors.sumiInk0, bg = colors.carpYellow },
|
||||
},
|
||||
{
|
||||
provider = " " .. seps.full.left,
|
||||
hl = { fg = colors.roninYellow, bg = colors.carpYellow },
|
||||
},
|
||||
{
|
||||
provider = function()
|
||||
return ("%d "):format(#cur_bufs())
|
||||
end,
|
||||
hl = function()
|
||||
return {
|
||||
fg = colors.sumiInk0,
|
||||
bg = colors.roninYellow,
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
provider = seps.full.right,
|
||||
hl = { fg = colors.roninYellow, bg = utils.get_highlight("StatusLine").bg },
|
||||
},
|
||||
}
|
||||
local TabPages = {
|
||||
-- only show this component if there's 2 or more tabpages
|
||||
condition = function()
|
||||
@ -1033,7 +988,6 @@ return {
|
||||
{
|
||||
provider = "%=",
|
||||
},
|
||||
Buffers,
|
||||
TabPages,
|
||||
},
|
||||
winbar = {
|
||||
|
@ -166,7 +166,7 @@ return {
|
||||
{
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
opts = {
|
||||
automatic_installation = { exclude = { "clangd", "asm-lsp" } },
|
||||
automatic_installation = true,
|
||||
handlers = {
|
||||
["jdtls"] = function()
|
||||
require("java").setup({
|
||||
|
@ -2,6 +2,8 @@ return {
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
-- Pinned until https://github.com/folke/noice.nvim/issues/923 is resolved
|
||||
commit = "d9328ef",
|
||||
config = function()
|
||||
require("noice").setup({
|
||||
lsp = {
|
||||
|
@ -341,19 +341,3 @@ subnetting
|
||||
TCP/IP
|
||||
IPv6
|
||||
V3
|
||||
SSID
|
||||
WPA
|
||||
IoT
|
||||
NISTIR
|
||||
CISA
|
||||
jiggler
|
||||
cyber
|
||||
implementers
|
||||
wildcard
|
||||
mistruth
|
||||
Reinstallation
|
||||
offsite
|
||||
endianness
|
||||
Endian
|
||||
factorizations
|
||||
formulae
|
||||
|
Binary file not shown.
@ -133,10 +133,8 @@ in
|
||||
++ [
|
||||
gnumake
|
||||
cmake
|
||||
clang-tools
|
||||
clang
|
||||
nasm
|
||||
asm-lsp
|
||||
clang-tools
|
||||
ninja
|
||||
ccache
|
||||
llvm
|
||||
@ -185,7 +183,6 @@ in
|
||||
};
|
||||
|
||||
programs = {
|
||||
nix-index.enable = true;
|
||||
wofi.enable = true;
|
||||
waybar = {
|
||||
enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user