feat : slimmer term font df mail, ollama,..
This commit is contained in:
parent
41f6358da5
commit
f5df772d81
4 changed files with 33 additions and 9 deletions
|
@ -52,10 +52,14 @@ color7 #e0def4
|
||||||
color15 #e0def4
|
color15 #e0def4
|
||||||
# END_KITTY_THEME
|
# END_KITTY_THEME
|
||||||
|
|
||||||
font_family Iosevka Nerd Font Mono Light
|
#font_family Iosevka Nerd Font Mono Light
|
||||||
bold_font Iosevka Nerd Font Mono Medium
|
#bold_font Iosevka Nerd Font Mono Medium
|
||||||
italic_font Iosevka Nerd Font Mono Light Italic
|
#italic_font Iosevka Nerd Font Mono Light Italic
|
||||||
bold_italic_font Iosevka Nerd Font Mono Medium Italic
|
#bold_italic_font Iosevka Nerd Font Mono Medium Italic
|
||||||
|
font_family Iosevka NFM ExtraLight
|
||||||
|
bold_font Iosevka NFM Light
|
||||||
|
italic_font Iosevka NFM ExtraLight Italic
|
||||||
|
bold_italic_font Iosevka NFM Light Italic
|
||||||
|
|
||||||
map ctrl+shift+f toggle_fullscreen
|
map ctrl+shift+f toggle_fullscreen
|
||||||
map ctrl+c copy_or_interrupt
|
map ctrl+c copy_or_interrupt
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
-- Options are automatically loaded before lazy.nvim startup
|
-- Options are automatically loaded before lazy.nvim startup
|
||||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||||
-- Add any additional options here
|
-- Add any additional options here
|
||||||
vim.opt.scrolloff = 8
|
local opt = vim.opt
|
||||||
vim.opt.wrap = true
|
opt.scrolloff = 8
|
||||||
vim.opt.list = false
|
opt.wrap = true
|
||||||
|
opt.clipboard = "unnamedplus"
|
||||||
|
opt.list = false
|
||||||
|
|
|
@ -50,6 +50,7 @@
|
||||||
mpc-cli
|
mpc-cli
|
||||||
mpd
|
mpd
|
||||||
neofetch
|
neofetch
|
||||||
|
ollama
|
||||||
pandoc
|
pandoc
|
||||||
pass
|
pass
|
||||||
pciutils
|
pciutils
|
||||||
|
@ -63,6 +64,7 @@
|
||||||
usbutils
|
usbutils
|
||||||
wget
|
wget
|
||||||
whois
|
whois
|
||||||
|
wl-clipboard
|
||||||
wirelesstools
|
wirelesstools
|
||||||
yt-dlp
|
yt-dlp
|
||||||
zellij
|
zellij
|
||||||
|
|
|
@ -135,6 +135,23 @@ in {
|
||||||
port = 465;
|
port = 465;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"mrflos@saint-ex.deuxfleurs.org" = {
|
||||||
|
realName = "Florian Schmitt";
|
||||||
|
userName = "mrflos";
|
||||||
|
address = "mrflos@saint-ex.deuxfleurs.org";
|
||||||
|
|
||||||
|
primary = false;
|
||||||
|
thunderbird = { enable = true; };
|
||||||
|
imap = {
|
||||||
|
host = "imap.saint-ex.deuxfleurs.org";
|
||||||
|
port = 993;
|
||||||
|
};
|
||||||
|
|
||||||
|
smtp = {
|
||||||
|
host = "smtp.saint-ex.deuxfleurs.org";
|
||||||
|
port = 465;
|
||||||
|
};
|
||||||
|
};
|
||||||
"mrflos@mrflos.pw" = {
|
"mrflos@mrflos.pw" = {
|
||||||
realName = "Florian Schmitt";
|
realName = "Florian Schmitt";
|
||||||
userName = "mrflos";
|
userName = "mrflos";
|
||||||
|
@ -254,7 +271,6 @@ in {
|
||||||
|
|
||||||
services.ssh-agent.enable = true;
|
services.ssh-agent.enable = true;
|
||||||
wayland.windowManager.hyprland.enable = true;
|
wayland.windowManager.hyprland.enable = true;
|
||||||
wayland.windowManager.hyprland.env = lib.mapAttrsToList (name: value: "${name},${builtins.toString value}") config.home.sessionVariables;
|
|
||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
exec-once = ''${startupScript}/bin/hyprland-start'';
|
exec-once = ''${startupScript}/bin/hyprland-start'';
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
|
Loading…
Reference in a new issue