[development] More TS dev fixes, adds direnv. Fixes some markdown rendering.
This commit is contained in:
6
home-manager/features/development/markdown.nix
Normal file
6
home-manager/features/development/markdown.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
markdownlint-cli2 # linter
|
||||
];
|
||||
}
|
||||
9
home-manager/features/development/typescript.nix
Normal file
9
home-manager/features/development/typescript.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
vtsls # Language Server
|
||||
eslint # Linter
|
||||
nodePackages.prettier # Formatter
|
||||
tailwindcss-language-server # Language server for tailwind CSS
|
||||
];
|
||||
}
|
||||
@@ -2,7 +2,10 @@
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# For Noto Sans NF
|
||||
nerdfonts
|
||||
# 25.05
|
||||
nerd-fonts.noto
|
||||
# 24.11
|
||||
# (nerdfonts.override { fonts = [ "NotoSans" ]; })
|
||||
];
|
||||
|
||||
programs.eww = {
|
||||
|
||||
@@ -35,5 +35,9 @@ return {
|
||||
date_format = "%Y-%m-%d",
|
||||
time_format = "%H:%M",
|
||||
},
|
||||
ui = {
|
||||
-- Disable the UI features and let render-markdown.nvim handle it.
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -5,12 +5,12 @@
|
||||
home.packages = with pkgs; [
|
||||
# Font
|
||||
# 24.11
|
||||
inconsolata-nerdfont
|
||||
fira-code-nerdfont
|
||||
# inconsolata-nerdfont
|
||||
# fira-code-nerdfont
|
||||
# 25.05
|
||||
# nerd-fonts.inconsolata
|
||||
# nerd-fonts.fira-code
|
||||
# nerd-fonts.jetbrains-mono
|
||||
nerd-fonts.inconsolata
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.jetbrains-mono
|
||||
|
||||
libsixel # For working with images in terminals
|
||||
];
|
||||
@@ -50,7 +50,7 @@
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "FiraCode Nerd Font:size=13";
|
||||
font = "FiraCode Nerd Font:size=12";
|
||||
selection-target = "primary";
|
||||
pad = "8x8";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user