From ddd14e2246b775795a7792e2f7d049389479c119 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Mon, 11 Sep 2023 07:59:34 -0600 Subject: [PATCH] packages, configs --- home-cli.nix | 9 +++++++- lazyvim-plugins.lua | 50 ++++++++++++++++++++++----------------------- 2 files changed, 33 insertions(+), 26 deletions(-) diff --git a/home-cli.nix b/home-cli.nix index 862ac92..b447b3a 100644 --- a/home-cli.nix +++ b/home-cli.nix @@ -42,7 +42,11 @@ in sc-im cacert weechat + cointop + tz ddgr + so + silicon visidata magic-wormhole nixfmt @@ -53,6 +57,7 @@ in nodejs deno yarn + lazydocker nodePackages.typescript-language-server nodePackages.stylelint nodePackages.js-beautify @@ -87,6 +92,7 @@ in home.sessionVariables = { EDITOR = "vim"; 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; @@ -123,7 +129,7 @@ in ''; }; - programs.exa = { + programs.eza = { enable = true; enableAliases = true; }; @@ -341,6 +347,7 @@ in programs.mpv.enable = true; programs.noti.enable = true; programs.btop.enable = true; + programs.bottom.enable = true; programs.tealdeer.enable = true; programs.ripgrep.enable = true; diff --git a/lazyvim-plugins.lua b/lazyvim-plugins.lua index dd31ecf..df88af4 100644 --- a/lazyvim-plugins.lua +++ b/lazyvim-plugins.lua @@ -1,32 +1,32 @@ return { - { "catppuccin/nvim", name = "catppuccin" }, + { "catppuccin/nvim", name = "catppuccin" }, - { - "LazyVim/LazyVim", - opts = { - colorscheme = "catppuccin", - }, - }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "catppuccin", + }, + }, - { - "nvim-orgmode/orgmode", - config = function() - require("orgmode").setup_ts_grammar() + { + "nvim-orgmode/orgmode", + config = function() + require("orgmode").setup_ts_grammar() - require("nvim-treesitter.configs").setup({ - highlight = { - enable = true, - 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 - }) + require("nvim-treesitter.configs").setup({ + highlight = { + enable = true, + 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 + }) - require("orgmode").setup({ - org_agenda_files = { "~/Sync/Notes/*" }, - org_default_notes_file = "~/Sync/Notes/Main.org", - }) - end, - }, + require("orgmode").setup({ + org_agenda_files = { "~/Sync/Notes/*" }, + org_default_notes_file = "~/Sync/Notes/Main.org", + }) + end, + }, - { "dhruvasagar/vim-table-mode" }, + { "dhruvasagar/vim-table-mode" }, }