packages, configs

master
Dustin Swan 8 months ago
parent 31c6c1f728
commit ddd14e2246
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -42,7 +42,11 @@ in
sc-im sc-im
cacert cacert
weechat weechat
cointop
tz
ddgr ddgr
so
silicon
visidata visidata
magic-wormhole magic-wormhole
nixfmt nixfmt
@ -53,6 +57,7 @@ in
nodejs nodejs
deno deno
yarn yarn
lazydocker
nodePackages.typescript-language-server nodePackages.typescript-language-server
nodePackages.stylelint nodePackages.stylelint
nodePackages.js-beautify nodePackages.js-beautify
@ -87,6 +92,7 @@ in
home.sessionVariables = { home.sessionVariables = {
EDITOR = "vim"; EDITOR = "vim";
BROWSER = "open"; BROWSER = "open";
TZ_LIST = "US/Pacific;US/Mountain;US/Central;US/Eastern;Europe/London;Europe/Kiev;Asia/Shanghai;Asia/Tokyo";
}; };
programs.home-manager.enable = true; programs.home-manager.enable = true;
@ -123,7 +129,7 @@ in
''; '';
}; };
programs.exa = { programs.eza = {
enable = true; enable = true;
enableAliases = true; enableAliases = true;
}; };
@ -341,6 +347,7 @@ in
programs.mpv.enable = true; programs.mpv.enable = true;
programs.noti.enable = true; programs.noti.enable = true;
programs.btop.enable = true; programs.btop.enable = true;
programs.bottom.enable = true;
programs.tealdeer.enable = true; programs.tealdeer.enable = true;
programs.ripgrep.enable = true; programs.ripgrep.enable = true;

@ -1,32 +1,32 @@
return { return {
{ "catppuccin/nvim", name = "catppuccin" }, { "catppuccin/nvim", name = "catppuccin" },
{ {
"LazyVim/LazyVim", "LazyVim/LazyVim",
opts = { opts = {
colorscheme = "catppuccin", colorscheme = "catppuccin",
}, },
}, },
{ {
"nvim-orgmode/orgmode", "nvim-orgmode/orgmode",
config = function() config = function()
require("orgmode").setup_ts_grammar() require("orgmode").setup_ts_grammar()
require("nvim-treesitter.configs").setup({ require("nvim-treesitter.configs").setup({
highlight = { highlight = {
enable = true, enable = true,
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
}, },
ensure_installed = { "org" }, -- Or run :TSUpdate org ensure_installed = { "org" }, -- Or run :TSUpdate org
}) })
require("orgmode").setup({ require("orgmode").setup({
org_agenda_files = { "~/Sync/Notes/*" }, org_agenda_files = { "~/Sync/Notes/*" },
org_default_notes_file = "~/Sync/Notes/Main.org", org_default_notes_file = "~/Sync/Notes/Main.org",
}) })
end, end,
}, },
{ "dhruvasagar/vim-table-mode" }, { "dhruvasagar/vim-table-mode" },
} }

Loading…
Cancel
Save