From f9aaf9d2ebd77ebddf9768e5d317f57141c15a0c Mon Sep 17 00:00:00 2001 From: Oleg Karfich Date: Wed, 19 Feb 2025 16:23:53 +0100 Subject: [PATCH 1/2] meta: configs: applications.yaml: format and sort Signed-off-by: Oleg Karfich --- meta/configs/applications.yaml | 89 +++++++++++++++++++--------------- 1 file changed, 50 insertions(+), 39 deletions(-) diff --git a/meta/configs/applications.yaml b/meta/configs/applications.yaml index 1113c03..c0ad4b2 100644 --- a/meta/configs/applications.yaml +++ b/meta/configs/applications.yaml @@ -1,43 +1,54 @@ - sudo: - - aptget: - bison: - colordiff: - curl: - fd-find: - flex: - git: - gnome-shell-extension-gpaste: - gnome-tweaks: - gnupg: - htop: - jq: - libncurses-dev: - libow-dev: - libsnappy-dev: - libsqlite3-dev: - libssl-dev: - lzop: - net-tools: - p7zip: - pipx: - python3-dev: - python3-git: - python3-pip: - python3-ply: - python3-setuptools: - python3-venv: - python3-virtualenv: - ripgrep: - shellcheck: - tig: - tree: - u-boot-tools: - virtualenv: + - aptget: + bison: + build-essential: + chrpath: + colordiff: + curl: + diffstat: + fd-find: + flex: + gawk: + gcc-multilib: + git: + gnome-shell-extension-gpaste: + gnome-tweaks: + gnupg: + htop: + jq: + libncurses-dev: + libow-dev: + libsdl1.2-dev: + libsnappy-dev: + libsqlite3-dev: + libssl-dev: + lzop: + net-tools: + p7zip: + pipx: + python3-dev: + python3-git: + python3-pip: + python3-ply: + python3-setuptools: + python3-venv: + python3-virtualenv: + ripgrep: + shellcheck: + socat: + texinfo: + tig: + tree: + u-boot-tools: + unzip: + virtualenv: + wget: + xterm: - - snap: - sleek: - notable: - classic: true + - snap: + sleek: + notable: + classic: true - shell: - - pipx install keep + - pipx install keep From 69e531eff8266d956fd53e7a3c39a984017fbef2 Mon Sep 17 00:00:00 2001 From: Oleg Karfich Date: Wed, 19 Feb 2025 16:28:24 +0100 Subject: [PATCH 2/2] meta: configs: lazyvim.yaml: add configs for conform and snacks plugin Signed-off-by: Oleg Karfich --- config/nvim/lua/plugins/conform.lua | 9 +++++++++ config/nvim/lua/plugins/snacks.lua | 21 +++++++++++++++++++++ meta/configs/lazyvim.yaml | 2 ++ 3 files changed, 32 insertions(+) create mode 100644 config/nvim/lua/plugins/conform.lua create mode 100644 config/nvim/lua/plugins/snacks.lua diff --git a/config/nvim/lua/plugins/conform.lua b/config/nvim/lua/plugins/conform.lua new file mode 100644 index 0000000..6846f20 --- /dev/null +++ b/config/nvim/lua/plugins/conform.lua @@ -0,0 +1,9 @@ +return { + "stevearc/conform.nvim", + opts = { + formatters_by_ft = { + yaml = { "prettier" }, + -- other filetypes and formatters + }, + }, +} diff --git a/config/nvim/lua/plugins/snacks.lua b/config/nvim/lua/plugins/snacks.lua new file mode 100644 index 0000000..39842c2 --- /dev/null +++ b/config/nvim/lua/plugins/snacks.lua @@ -0,0 +1,21 @@ +return { + "folke/snacks.nvim", + opts = { + picker = { + sources = { + explorer = { + ignored = true, + hidden = false, + }, + grep = { + ignored = true, + hidden = true, + }, + files = { + ignored = true, + hidden = true, + }, + }, + }, + }, +} diff --git a/meta/configs/lazyvim.yaml b/meta/configs/lazyvim.yaml index bd84370..20470e6 100644 --- a/meta/configs/lazyvim.yaml +++ b/meta/configs/lazyvim.yaml @@ -37,3 +37,5 @@ ~/.local/bin/vim: $HOME/.asdf/installs/neovim/nightly/bin/nvim ~/.config/nvim/lua/plugins/colorscheme.lua: config/nvim/lua/plugins/colorscheme.lua ~/.config/nvim/lua/plugins/my-mason.lua: config/nvim/lua/plugins/mason.lua + ~/.config/nvim/lua/plugins/my-conform.lua: config/nvim/lua/plugins/conform.lua + ~/.config/nvim/lua/plugins/my-snacks.lua: config/nvim/lua/plugins/snacks.lua