Compare commits
No commits in common. "d4085c80c268fa36f9bcd5ff98843b627eff6db1" and "30f518235d4bd322c95be50fcf1a9da4caed4074" have entirely different histories.
d4085c80c2
...
30f518235d
5 changed files with 20 additions and 48 deletions
|
@ -7,8 +7,7 @@ exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOB
|
|||
|
||||
exec = swayidle &
|
||||
exec = kanshi &
|
||||
exec = swww init &
|
||||
# exec = hyprpaper &
|
||||
exec = hyprpaper &
|
||||
|
||||
# TODO: make hyprman kill eww if necessary
|
||||
exec = pkill eww & hyprman monitors &
|
||||
|
|
|
@ -2,15 +2,8 @@ windowrulev2 = tile,class:(Vivaldi-stable)
|
|||
|
||||
# prevent flameshot from requesting fullscreen
|
||||
# windowrulev2 = nofullscreenrequest,class:^(flameshot)$,title:^(flameshot)
|
||||
|
||||
# windowrulev2 = float,class:^(flameshot)$,title:^(flameshot)
|
||||
|
||||
windowrulev2 = float,class:^(MultiViewer for F1)$
|
||||
|
||||
|
||||
windowrulev2 = float, class:^(notes-editor)$
|
||||
windowrulev2 = move 10% 10% ,class:^(notes-editor)$
|
||||
windowrulev2 = size 80% 80% ,class:^(notes-editor)$
|
||||
windowrulev2 = dimaround, class:^(notes-editor)$
|
||||
windowrulev2 = animation popin 50%, class:^(notes-editor)$
|
||||
|
||||
|
||||
set notes editor to floating
|
||||
windowrulev2 = float,class:^(notes-editor)$
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
profile default {
|
||||
output eDP-1 mode 1920x1200 position 0,0
|
||||
}
|
||||
|
||||
profile work {
|
||||
output eDP-1 mode 1920x1200 position 1920,0
|
||||
output DP-3 mode 1920x1080 position 0,0
|
||||
exec swww img -o eDP-1 ~/.config/hypr/wallpapers/current/00005-4229950720.png & swww img -o DP-3 ~/.config/hypr/wallpapers/current/00007-2215131892.png
|
||||
}
|
||||
|
||||
profile {
|
||||
output eDP-1 mode 1920x1200 position 1920,0
|
||||
output DP-5 mode 1920x1080 position 0,0
|
||||
}
|
||||
|
||||
profile {
|
||||
output eDP-1 mode 1920x1200 position 1920,0
|
||||
output DP-6 mode 1920x1080 position 0,0
|
||||
}
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
return {
|
||||
require("util").setup_lang({ treesitter = { "python", "toml" }, mason = { "ruff", "ruff-lsp" } }),
|
||||
-- {
|
||||
-- "nvimtools/none-ls.nvim",
|
||||
-- opts = function(_, opts)
|
||||
-- local nls = require("null-ls")
|
||||
-- table.insert(opts.sources or {}, nls.builtins.formatting.ruff)
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"nvimtools/none-ls.nvim",
|
||||
opts = function(_, opts)
|
||||
local nls = require("null-ls")
|
||||
table.insert(opts.sources or {}, nls.builtins.formatting.ruff)
|
||||
end,
|
||||
},
|
||||
-- modified from https://www.lazyvim.org/extras/lang/python#nvim-lspconfig
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
return {
|
||||
require("util").setup_lang({ treesitter = { "bash" }, mason = { "shellcheck" } }),
|
||||
-- {
|
||||
-- "nvimtools/none-ls.nvim",
|
||||
-- opts = function(_, opts)
|
||||
-- local nls = require("null-ls")
|
||||
-- opts.sources = vim.list_extend(opts.sources or {}, {
|
||||
-- nls.builtins.diagnostics.shellcheck,
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"nvimtools/none-ls.nvim",
|
||||
opts = function(_, opts)
|
||||
local nls = require("null-ls")
|
||||
opts.sources = vim.list_extend(opts.sources or {}, {
|
||||
nls.builtins.diagnostics.shellcheck,
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue