236 current 2025-01-11 21:28:50 25.05.20241217.d3c42f1 6.6.66 *
This commit is contained in:
@@ -59,7 +59,7 @@ vim.opt.splitbelow = true
|
|||||||
vim.opt.updatetime = 300 -- faster completion
|
vim.opt.updatetime = 300 -- faster completion
|
||||||
vim.opt.signcolumn = "auto"
|
vim.opt.signcolumn = "auto"
|
||||||
vim.opt.title = true
|
vim.opt.title = true
|
||||||
vim.opt.titlestring = "%F - Neovim" -- File path and "Neovim" branding
|
vim.opt.titlestring = "%F - NVIM" -- File path and "Neovim" branding
|
||||||
-- vim.opt.titlestring = "%(%{expand(\"%:~:h\")}%)#%(% t%)%(% M%)%(% )NVIM"
|
-- vim.opt.titlestring = "%(%{expand(\"%:~:h\")}%)#%(% t%)%(% M%)%(% )NVIM"
|
||||||
|
|
||||||
-- Append '+' register to clipboard
|
-- Append '+' register to clipboard
|
||||||
|
|||||||
26
system/fonts/fonts.nix
Normal file
26
system/fonts/fonts.nix
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
fonts = {
|
||||||
|
enableDefaultPackages = true;
|
||||||
|
packages = with pkgs; [
|
||||||
|
corefonts
|
||||||
|
fira-code
|
||||||
|
fira-code-symbols
|
||||||
|
font-awesome_4
|
||||||
|
font-awesome_5
|
||||||
|
inconsolata
|
||||||
|
ipaexfont
|
||||||
|
jetbrains-mono
|
||||||
|
noto-fonts-cjk-sans
|
||||||
|
noto-fonts-cjk-serif
|
||||||
|
siji
|
||||||
|
ubuntu_font_family
|
||||||
|
];
|
||||||
|
|
||||||
|
fontconfig = {
|
||||||
|
enable = true;
|
||||||
|
defaultFonts = {
|
||||||
|
monospace = ["Fira Code"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -6,5 +6,6 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./wm/bspwm.nix
|
./wm/bspwm.nix
|
||||||
./services/services.nix
|
./services/services.nix
|
||||||
|
./fonts/fonts.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user