Update 4 files
- /home/private_dot_config/nvim-custom/init.lua - /home/private_dot_config/nvim-custom/run_onchanges_after_symlink-custom.tmpl - /home/.chezmoidata.yaml - /software.yml
This commit is contained in:
parent
32f2f9161f
commit
e3d20f20ec
4 changed files with 57 additions and 0 deletions
|
@ -486,6 +486,7 @@ softwareGroups:
|
||||||
- vlc
|
- vlc
|
||||||
Misc-Desktop: &Misc-Desktop
|
Misc-Desktop: &Misc-Desktop
|
||||||
- _misc-flatpaks
|
- _misc-flatpaks
|
||||||
|
- _nautilus-extensions
|
||||||
- cerebro
|
- cerebro
|
||||||
- clocker
|
- clocker
|
||||||
- cumulus
|
- cumulus
|
||||||
|
|
3
home/private_dot_config/nvim-custom/init.lua
Normal file
3
home/private_dot_config/nvim-custom/init.lua
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
if executable('volta')
|
||||||
|
let g:node_host_prog = trim(system("volta which neovim-node-host"))
|
||||||
|
endif
|
|
@ -0,0 +1,16 @@
|
||||||
|
{{- if (ne .host.distro.family "windows") -}}
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
{{ includeTemplate "universal/profile" }}
|
||||||
|
{{ includeTemplate "universal/logg" }}
|
||||||
|
|
||||||
|
### Symlink custom code for Neovim configuration
|
||||||
|
if [ ! -d "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/lua/custom" ]; then
|
||||||
|
logg info "Linking ${XDG_CONFIG_HOME:-$HOME/.config}/nvim-custom to ${XDG_CONFIG_HOME:-$HOME/.config}/nvim/lua/custom"
|
||||||
|
logg info "Changes should go in ${XDG_CONFIG_HOME:-$HOME/.config}/nvim-custom"
|
||||||
|
ln -s "${XDG_CONFIG_HOME:-$HOME/.config}/nvim-custom" "${XDG_CONFIG_HOME:-$HOME/.config}/nvim/lua/custom"
|
||||||
|
else
|
||||||
|
logg info "${XDG_CONFIG_HOME:-$HOME/.config}/nvim-custom appears to already be symlinked to ${XDG_CONFIG_HOME:-$HOME/.config}/nvim/lua/custom"
|
||||||
|
fi
|
||||||
|
|
||||||
|
{{ end -}}
|
37
software.yml
37
software.yml
|
@ -286,6 +286,15 @@ softwarePackages:
|
||||||
- what-ip
|
- what-ip
|
||||||
# Only works with at least one package specified
|
# Only works with at least one package specified
|
||||||
flatpak: flatseal
|
flatpak: flatseal
|
||||||
|
_nautilus-extensions:
|
||||||
|
_deps:
|
||||||
|
- nautilus-gtkhash
|
||||||
|
- nautilus-image-converter
|
||||||
|
- nautilus-share
|
||||||
|
- nautilus-wipe
|
||||||
|
apt: nautilus
|
||||||
|
dnf: nautilus
|
||||||
|
pacman: nautilus
|
||||||
drawing:
|
drawing:
|
||||||
_bin: drawing
|
_bin: drawing
|
||||||
flatpak: com.github.maoschanz.drawing
|
flatpak: com.github.maoschanz.drawing
|
||||||
|
@ -4988,6 +4997,22 @@ softwarePackages:
|
||||||
npm: nativefier
|
npm: nativefier
|
||||||
_service: false
|
_service: false
|
||||||
_type: cli
|
_type: cli
|
||||||
|
nautilus-gtkhash:
|
||||||
|
apt: nautilus-gtkhash
|
||||||
|
dnf: nautilus-gtkhash
|
||||||
|
pacman: nautilus-gtkhash
|
||||||
|
nautilus-image-converter:
|
||||||
|
apt: nautilus-image-converter
|
||||||
|
dnf: nautilus-image-converter
|
||||||
|
pacman: nautilus-image-converter
|
||||||
|
nautilus-share:
|
||||||
|
apt: nautilus-share
|
||||||
|
dnf: nautilus-share
|
||||||
|
pacman: nautilus-share
|
||||||
|
nautilus-wipe:
|
||||||
|
apt: nautilus-wipe
|
||||||
|
dnf: nautilus-wipe
|
||||||
|
pacman: nautilus-wipe
|
||||||
nb:
|
nb:
|
||||||
_bin: nb
|
_bin: nb
|
||||||
_deps:
|
_deps:
|
||||||
|
@ -5996,6 +6021,18 @@ softwarePackages:
|
||||||
pacman: python-pip
|
pacman: python-pip
|
||||||
scoop: python
|
scoop: python
|
||||||
_service: false
|
_service: false
|
||||||
|
python2:
|
||||||
|
_bin: python2
|
||||||
|
_desc: null
|
||||||
|
_docs: null
|
||||||
|
_github: null
|
||||||
|
_home: null
|
||||||
|
_name: null
|
||||||
|
apt: python2
|
||||||
|
brew: python2
|
||||||
|
dnf: python2
|
||||||
|
pacman: python2
|
||||||
|
scoop: python2
|
||||||
pywhat:
|
pywhat:
|
||||||
_bin: what
|
_bin: what
|
||||||
_desc: Identify anything. pyWhat easily lets you identify emails, IP addresses, and more. Feed it a .pcap file or some text and it'll tell you what it is!
|
_desc: Identify anything. pyWhat easily lets you identify emails, IP addresses, and more. Feed it a .pcap file or some text and it'll tell you what it is!
|
||||||
|
|
Loading…
Reference in a new issue