Compare commits

...

3 commits

4 changed files with 15 additions and 68 deletions

View file

@ -13,59 +13,5 @@ window:
font:
normal:
family: FiraCode Nerd Font Mono
style: Medium
size: 12.0

View file

@ -36,6 +36,13 @@ lazy.setup({
'tpope/vim-surround',
'tpope/vim-obsession',
{
'm4xshen/hardtime.nvim',
config = function()
require 'hardtime'.setup {}
end
},
--Tmux navigation
{
'alexghergh/nvim-tmux-navigation',
@ -71,7 +78,8 @@ lazy.setup({
end
},
{'stevearc/oil.nvim',
{
'stevearc/oil.nvim',
config = function()
require("oil").setup()
end

View file

@ -19,14 +19,7 @@ corner-radius = 4.0;
rounded-corners-exclude = [
#"window_type = 'normal'",
"class_g = 'Rofi'",
"class_g = 'awesome'",
"class_g = 'URxvt'",
"class_g = 'XTerm'",
"class_g = 'kitty'",
"class_g = 'Polybar'",
"class_g = 'code-oss'",
#"class_g = 'TelegramDesktop'",
"class_g = 'Thunderbird'"
"class_g = 'TelegramDesktop'",
];
round-borders = 1;
round-borders-exclude = [

View file

@ -57,7 +57,7 @@ import Colors.Teal
* Variables
@code haskell
myTerminal = "alacritty"
myTerminal = "kitty"
myTerminalTmux = myTerminal ++ " -e tmux a"
myTextEditor = "nvim"
myWebBrowser = "firefox"
@ -172,7 +172,7 @@ myStartupHook = do
spawn ("killall trayer ;sleep 1 && trayer --monitor 0 --edge top --align right --widthtype request --padding 7 --iconspacing 12 --SetDockType true --SetPartialStrut true --expand true --transparent true --alpha 0 --tint 0x2B2E37 --height 26 --distance 5 &")
spawnOn "web" myWebBrowser
spawnOn "main" myTerminalTmux
spawnOn "monitoring" ("alacritty -e btop")
spawnOn "monitoring" (myTerminal ++ " -e btop")
@end
* XMobar Config
@code haskell