add file lists to ghostty and neovim src install
This commit is contained in:
@@ -12,12 +12,14 @@
|
||||
ghostty:
|
||||
method: "{{ ghostty.method }}"
|
||||
arch: "{{ pkgconfig.ghostty.archmap[ansible_architecture] }}"
|
||||
clean: "{{ pkgconfig.ghostty.clean_install }}"
|
||||
deps: "{{ pkgconfig.ghostty.build_deps[ansible_os_family] }}"
|
||||
vers: "{{ pkgconfig.ghostty.version }}"
|
||||
pkg: "{{ pkgconfig.ghostty[ghostty.method] }}"
|
||||
repo: "{{ pkgconfig.ghostty.git_repo }}"
|
||||
build_deps: "{{ pkgconfig.ghostty.build_deps[ansible_os_family] }}"
|
||||
optimize: "{{ pkgconfig.ghostty.optimize }}"
|
||||
installed_files: "{{ pkgconfig.ghostty.build_installed_files }}"
|
||||
|
||||
- name: Set ghostty package manager install
|
||||
when:
|
||||
|
||||
@@ -24,6 +24,8 @@
|
||||
git_repo: "{{ pkgconfig.neovim.git_repo }}"
|
||||
git_path: "{{ d_tempdir.path }}/neovim"
|
||||
build_type: "{{ pkgconfig.neovim.build_type }}"
|
||||
clean: "{{ pkgconfig.neovim.clean_install }}"
|
||||
installed_files: "{{ pkgconfig.neovim.build_installed_files }}"
|
||||
|
||||
- name: Set neovim config for appimage install
|
||||
when:
|
||||
|
||||
@@ -1,6 +1,24 @@
|
||||
# vim: set filetype=yaml.ansible :
|
||||
---
|
||||
- name: Clean existing install
|
||||
when:
|
||||
- ghostty.clean
|
||||
become: "{{ ext_become }}"
|
||||
loop: "{{ ghostty.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
ansible.builtin.file:
|
||||
state: absent
|
||||
path: "{{ path.prefix }}/{{ file }}"
|
||||
|
||||
- name: Check if ghostty is installed
|
||||
register: stat_ghostty_inst
|
||||
ansible.builtin.stat:
|
||||
path: "{{ path.prefix }}/bin/ghostty"
|
||||
|
||||
- name: Install and build source for {{ pkg }}
|
||||
when:
|
||||
- not stat_ghostty_inst.stat.exists
|
||||
block:
|
||||
- name: Clone git repository {{ pkg }}
|
||||
ansible.builtin.git:
|
||||
@@ -14,4 +32,5 @@
|
||||
register: c_ghostty_build
|
||||
ansible.builtin.command:
|
||||
chdir: "{{ d_tempdir.path }}/ghostty"
|
||||
creates: "{{ path.prefix }}/bin/ghostty"
|
||||
cmd: "zig build -p {{ path.prefix }} -Doptimize={{ ghostty.optimize }}"
|
||||
|
||||
@@ -1,19 +1,40 @@
|
||||
# vim: set filetype=yaml.ansible :
|
||||
---
|
||||
- name: Clone neovim git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
dest: "{{ neovim.git_path }}"
|
||||
repo: "{{ neovim.git_repo }}"
|
||||
version: "{{ neovim.vers }}"
|
||||
recursive: true
|
||||
|
||||
- name: Build and install neovim
|
||||
- name: Clean existing install
|
||||
become: "{{ ext_become }}"
|
||||
community.general.make:
|
||||
chdir: "{{ neovim.git_path }}"
|
||||
params:
|
||||
CMAKE_BUILD_TYPE: "{{ neovim.build_type }}"
|
||||
CMAKE_EXTRA_FLAGS: "-DCMAKE_INSTALL_PREFIX={{ path.prefix }}"
|
||||
target: install
|
||||
jobs: "{{ ansible_processor_nproc | int }}"
|
||||
when:
|
||||
- neovim.installed_files is defined
|
||||
- neovim.clean
|
||||
loop: "{{ neovim.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
ansible.builtin.file:
|
||||
path: "{{ path.prefix }}/{{ file }}"
|
||||
state: absent
|
||||
|
||||
- name: Check if neovim is already installed in {{ path.prefix }}
|
||||
register: stat_neovim_inst
|
||||
ansible.builtin.stat:
|
||||
path: "{{ path.prefix }}/bin/nvim"
|
||||
|
||||
- name: Build and install neovim {{ neovim.git_branch }}
|
||||
when:
|
||||
- not stat_neovim_inst.stat.exists
|
||||
block:
|
||||
- name: Clone neovim git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
dest: "{{ neovim.git_path }}"
|
||||
repo: "{{ neovim.git_repo }}"
|
||||
version: "{{ neovim.vers }}"
|
||||
recursive: true
|
||||
|
||||
- name: Build and install neovim
|
||||
become: "{{ ext_become }}"
|
||||
community.general.make:
|
||||
chdir: "{{ neovim.git_path }}"
|
||||
params:
|
||||
CMAKE_BUILD_TYPE: "{{ neovim.build_type }}"
|
||||
CMAKE_EXTRA_FLAGS: "-DCMAKE_INSTALL_PREFIX={{ path.prefix }}"
|
||||
target: install
|
||||
jobs: "{{ ansible_processor_nproc | int }}"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
ghostty:
|
||||
clean_install: false
|
||||
version: v1.1.2
|
||||
optimize: ReleaseFast
|
||||
git_repo: https://github.com/ghostty-org/ghostty
|
||||
@@ -44,3 +45,448 @@ ghostty:
|
||||
methods:
|
||||
default: src
|
||||
MacOSX: cask
|
||||
build_installed_files:
|
||||
- share/applications/com.mitchellh.ghostty.desktop
|
||||
- share/icons/hicolor/1024x1024/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/32x32@2/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/128x128@2/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/128x128/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/256x256@2/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/16x16/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/512x512/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/32x32/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/16x16@2/apps/com.mitchellh.ghostty.png
|
||||
- share/icons/hicolor/256x256/apps/com.mitchellh.ghostty.png
|
||||
- share/nautilus-python/extensions/ghostty.py
|
||||
- share/kio/servicemenus/com.mitchellh.ghostty.desktop
|
||||
- share/nvim/site/syntax/ghostty.vim
|
||||
- share/nvim/site/ftdetect/ghostty.vim
|
||||
- share/nvim/site/ftplugin/ghostty.vim
|
||||
- share/nvim/site/compiler/ghostty.vim
|
||||
- share/bash-completion/completions/ghostty.bash
|
||||
- share/fish/vendor_completions.d/ghostty.fish
|
||||
- share/zsh/site-functions/_ghostty
|
||||
- share/vim/vimfiles/syntax/ghostty.vim
|
||||
- share/vim/vimfiles/ftdetect/ghostty.vim
|
||||
- share/vim/vimfiles/ftplugin/ghostty.vim
|
||||
- share/vim/vimfiles/compiler/ghostty.vim
|
||||
- share/ghostty/themes/0x96f
|
||||
- share/ghostty/themes/3024 Day
|
||||
- share/ghostty/themes/3024 Night
|
||||
- share/ghostty/themes/Aardvark Blue
|
||||
- share/ghostty/themes/Abernathy
|
||||
- share/ghostty/themes/Adventure
|
||||
- share/ghostty/themes/AdventureTime
|
||||
- share/ghostty/themes/Adwaita
|
||||
- share/ghostty/themes/Adwaita Dark
|
||||
- share/ghostty/themes/Afterglow
|
||||
- share/ghostty/themes/Alabaster
|
||||
- share/ghostty/themes/AlienBlood
|
||||
- share/ghostty/themes/Andromeda
|
||||
- share/ghostty/themes/Apple Classic
|
||||
- share/ghostty/themes/Apple System Colors
|
||||
- share/ghostty/themes/Apple System Colors Light
|
||||
- share/ghostty/themes/Argonaut
|
||||
- share/ghostty/themes/Arthur
|
||||
- share/ghostty/themes/AtelierSulphurpool
|
||||
- share/ghostty/themes/Atom
|
||||
- share/ghostty/themes/AtomOneLight
|
||||
- share/ghostty/themes/Aura
|
||||
- share/ghostty/themes/Aurora
|
||||
- share/ghostty/themes/Ayu Mirage
|
||||
- share/ghostty/themes/Banana Blueberry
|
||||
- share/ghostty/themes/Batman
|
||||
- share/ghostty/themes/Belafonte Day
|
||||
- share/ghostty/themes/Belafonte Night
|
||||
- share/ghostty/themes/BirdsOfParadise
|
||||
- share/ghostty/themes/Blazer
|
||||
- share/ghostty/themes/Blue Matrix
|
||||
- share/ghostty/themes/BlueBerryPie
|
||||
- share/ghostty/themes/BlueDolphin
|
||||
- share/ghostty/themes/BlulocoDark
|
||||
- share/ghostty/themes/BlulocoLight
|
||||
- share/ghostty/themes/Borland
|
||||
- share/ghostty/themes/Breeze
|
||||
- share/ghostty/themes/Bright Lights
|
||||
- share/ghostty/themes/Broadcast
|
||||
- share/ghostty/themes/Brogrammer
|
||||
- share/ghostty/themes/Builtin Dark
|
||||
- share/ghostty/themes/Builtin Light
|
||||
- share/ghostty/themes/Builtin Pastel Dark
|
||||
- share/ghostty/themes/Builtin Solarized Dark
|
||||
- share/ghostty/themes/Builtin Solarized Light
|
||||
- share/ghostty/themes/Builtin Tango Dark
|
||||
- share/ghostty/themes/Builtin Tango Light
|
||||
- share/ghostty/themes/C64
|
||||
- share/ghostty/themes/CGA
|
||||
- share/ghostty/themes/CLRS
|
||||
- share/ghostty/themes/Calamity
|
||||
- share/ghostty/themes/Chalk
|
||||
- share/ghostty/themes/Chalkboard
|
||||
- share/ghostty/themes/ChallengerDeep
|
||||
- share/ghostty/themes/Chester
|
||||
- share/ghostty/themes/Ciapre
|
||||
- share/ghostty/themes/Cobalt Neon
|
||||
- share/ghostty/themes/Cobalt2
|
||||
- share/ghostty/themes/CobaltNext
|
||||
- share/ghostty/themes/CobaltNext-Dark
|
||||
- share/ghostty/themes/CobaltNext-Minimal
|
||||
- share/ghostty/themes/CrayonPonyFish
|
||||
- share/ghostty/themes/CutiePro
|
||||
- share/ghostty/themes/Cyberdyne
|
||||
- share/ghostty/themes/CyberpunkScarletProtocol
|
||||
- share/ghostty/themes/Dark Modern
|
||||
- share/ghostty/themes/Dark Pastel
|
||||
- share/ghostty/themes/Dark+
|
||||
- share/ghostty/themes/Darkside
|
||||
- share/ghostty/themes/Desert
|
||||
- share/ghostty/themes/Dimidium
|
||||
- share/ghostty/themes/DimmedMonokai
|
||||
- share/ghostty/themes/Django
|
||||
- share/ghostty/themes/DjangoRebornAgain
|
||||
- share/ghostty/themes/DjangoSmooth
|
||||
- share/ghostty/themes/Doom Peacock
|
||||
- share/ghostty/themes/DoomOne
|
||||
- share/ghostty/themes/DotGov
|
||||
- share/ghostty/themes/Dracula
|
||||
- share/ghostty/themes/Dracula+
|
||||
- share/ghostty/themes/Duotone Dark
|
||||
- share/ghostty/themes/ENCOM
|
||||
- share/ghostty/themes/Earthsong
|
||||
- share/ghostty/themes/Elegant
|
||||
- share/ghostty/themes/Elemental
|
||||
- share/ghostty/themes/Elementary
|
||||
- share/ghostty/themes/Espresso
|
||||
- share/ghostty/themes/Espresso Libre
|
||||
- share/ghostty/themes/Everblush
|
||||
- share/ghostty/themes/Everforest Dark - Hard
|
||||
- share/ghostty/themes/Fahrenheit
|
||||
- share/ghostty/themes/Fairyfloss
|
||||
- share/ghostty/themes/Fideloper
|
||||
- share/ghostty/themes/Firefly Traditional
|
||||
- share/ghostty/themes/FirefoxDev
|
||||
- share/ghostty/themes/Firewatch
|
||||
- share/ghostty/themes/FishTank
|
||||
- share/ghostty/themes/Flat
|
||||
- share/ghostty/themes/Flatland
|
||||
- share/ghostty/themes/Floraverse
|
||||
- share/ghostty/themes/ForestBlue
|
||||
- share/ghostty/themes/Framer
|
||||
- share/ghostty/themes/FrontEndDelight
|
||||
- share/ghostty/themes/FunForrest
|
||||
- share/ghostty/themes/Galaxy
|
||||
- share/ghostty/themes/Galizur
|
||||
- share/ghostty/themes/Ghostty Default StyleDark
|
||||
- share/ghostty/themes/GitHub Dark
|
||||
- share/ghostty/themes/GitHub-Dark-Colorblind
|
||||
- share/ghostty/themes/GitHub-Dark-Default
|
||||
- share/ghostty/themes/GitHub-Dark-Dimmed
|
||||
- share/ghostty/themes/GitHub-Dark-High-Contrast
|
||||
- share/ghostty/themes/GitHub-Light-Colorblind
|
||||
- share/ghostty/themes/GitHub-Light-Default
|
||||
- share/ghostty/themes/GitHub-Light-High-Contrast
|
||||
- share/ghostty/themes/GitLab-Dark
|
||||
- share/ghostty/themes/GitLab-Dark-Grey
|
||||
- share/ghostty/themes/GitLab-Light
|
||||
- share/ghostty/themes/Github
|
||||
- share/ghostty/themes/Glacier
|
||||
- share/ghostty/themes/Grape
|
||||
- share/ghostty/themes/Grass
|
||||
- share/ghostty/themes/Grey-green
|
||||
- share/ghostty/themes/GruvboxDark
|
||||
- share/ghostty/themes/GruvboxDarkHard
|
||||
- share/ghostty/themes/GruvboxLight
|
||||
- share/ghostty/themes/GruvboxLightHard
|
||||
- share/ghostty/themes/Guezwhoz
|
||||
- share/ghostty/themes/HaX0R_BLUE
|
||||
- share/ghostty/themes/HaX0R_GR33N
|
||||
- share/ghostty/themes/HaX0R_R3D
|
||||
- share/ghostty/themes/Hacktober
|
||||
- share/ghostty/themes/Hardcore
|
||||
- share/ghostty/themes/Harper
|
||||
- share/ghostty/themes/Havn Daggry
|
||||
- share/ghostty/themes/Havn Skumring
|
||||
- share/ghostty/themes/Highway
|
||||
- share/ghostty/themes/Hipster Green
|
||||
- share/ghostty/themes/Hivacruz
|
||||
- share/ghostty/themes/Homebrew
|
||||
- share/ghostty/themes/Hopscotch
|
||||
- share/ghostty/themes/Hopscotch.256
|
||||
- share/ghostty/themes/Horizon
|
||||
- share/ghostty/themes/Horizon-Bright
|
||||
- share/ghostty/themes/Hurtado
|
||||
- share/ghostty/themes/Hybrid
|
||||
- share/ghostty/themes/IC_Green_PPL
|
||||
- share/ghostty/themes/IC_Orange_PPL
|
||||
- share/ghostty/themes/IR_Black
|
||||
- share/ghostty/themes/Jackie Brown
|
||||
- share/ghostty/themes/Japanesque
|
||||
- share/ghostty/themes/Jellybeans
|
||||
- share/ghostty/themes/JetBrains Darcula
|
||||
- share/ghostty/themes/Kanagawa Dragon
|
||||
- share/ghostty/themes/Kanagawa Wave
|
||||
- share/ghostty/themes/Kibble
|
||||
- share/ghostty/themes/Kolorit
|
||||
- share/ghostty/themes/Konsolas
|
||||
- share/ghostty/themes/Lab Fox
|
||||
- share/ghostty/themes/Laser
|
||||
- share/ghostty/themes/Later This Evening
|
||||
- share/ghostty/themes/Lavandula
|
||||
- share/ghostty/themes/LiquidCarbon
|
||||
- share/ghostty/themes/LiquidCarbonTransparent
|
||||
- share/ghostty/themes/LiquidCarbonTransparentInverse
|
||||
- share/ghostty/themes/Man Page
|
||||
- share/ghostty/themes/Mariana
|
||||
- share/ghostty/themes/Material
|
||||
- share/ghostty/themes/MaterialDark
|
||||
- share/ghostty/themes/MaterialDarker
|
||||
- share/ghostty/themes/MaterialDesignColors
|
||||
- share/ghostty/themes/MaterialOcean
|
||||
- share/ghostty/themes/Mathias
|
||||
- share/ghostty/themes/Medallion
|
||||
- share/ghostty/themes/Melange_dark
|
||||
- share/ghostty/themes/Melange_light
|
||||
- share/ghostty/themes/Mellifluous
|
||||
- share/ghostty/themes/Mirage
|
||||
- share/ghostty/themes/Misterioso
|
||||
- share/ghostty/themes/Molokai
|
||||
- share/ghostty/themes/MonaLisa
|
||||
- share/ghostty/themes/Monokai Classic
|
||||
- share/ghostty/themes/Monokai Pro
|
||||
- share/ghostty/themes/Monokai Pro Light
|
||||
- share/ghostty/themes/Monokai Pro Light Sun
|
||||
- share/ghostty/themes/Monokai Pro Machine
|
||||
- share/ghostty/themes/Monokai Pro Octagon
|
||||
- share/ghostty/themes/Monokai Pro Ristretto
|
||||
- share/ghostty/themes/Monokai Pro Spectrum
|
||||
- share/ghostty/themes/Monokai Remastered
|
||||
- share/ghostty/themes/Monokai Soda
|
||||
- share/ghostty/themes/Monokai Vivid
|
||||
- share/ghostty/themes/N0tch2k
|
||||
- share/ghostty/themes/Neon
|
||||
- share/ghostty/themes/Neopolitan
|
||||
- share/ghostty/themes/Neutron
|
||||
- share/ghostty/themes/Night Owlish Light
|
||||
- share/ghostty/themes/NightLion v1
|
||||
- share/ghostty/themes/NightLion v2
|
||||
- share/ghostty/themes/Nocturnal Winter
|
||||
- share/ghostty/themes/Novel
|
||||
- share/ghostty/themes/NvimDark
|
||||
- share/ghostty/themes/NvimLight
|
||||
- share/ghostty/themes/Obsidian
|
||||
- share/ghostty/themes/Ocean
|
||||
- share/ghostty/themes/Oceanic-Next
|
||||
- share/ghostty/themes/OceanicMaterial
|
||||
- share/ghostty/themes/Ollie
|
||||
- share/ghostty/themes/OneHalfDark
|
||||
- share/ghostty/themes/OneHalfLight
|
||||
- share/ghostty/themes/Operator Mono Dark
|
||||
- share/ghostty/themes/Overnight Slumber
|
||||
- share/ghostty/themes/Oxocarbon
|
||||
- share/ghostty/themes/PaleNightHC
|
||||
- share/ghostty/themes/Pandora
|
||||
- share/ghostty/themes/Paraiso Dark
|
||||
- share/ghostty/themes/PaulMillr
|
||||
- share/ghostty/themes/PencilDark
|
||||
- share/ghostty/themes/PencilLight
|
||||
- share/ghostty/themes/Peppermint
|
||||
- share/ghostty/themes/Piatto Light
|
||||
- share/ghostty/themes/Pnevma
|
||||
- share/ghostty/themes/Popping and Locking
|
||||
- share/ghostty/themes/Pro
|
||||
- share/ghostty/themes/Pro Light
|
||||
- share/ghostty/themes/Purple Rain
|
||||
- share/ghostty/themes/Rapture
|
||||
- share/ghostty/themes/Raycast_Dark
|
||||
- share/ghostty/themes/Raycast_Light
|
||||
- share/ghostty/themes/Red Alert
|
||||
- share/ghostty/themes/Red Planet
|
||||
- share/ghostty/themes/Red Sands
|
||||
- share/ghostty/themes/Relaxed
|
||||
- share/ghostty/themes/Retro
|
||||
- share/ghostty/themes/RetroLegends
|
||||
- share/ghostty/themes/Rippedcasts
|
||||
- share/ghostty/themes/Rouge 2
|
||||
- share/ghostty/themes/Royal
|
||||
- share/ghostty/themes/Ryuuko
|
||||
- share/ghostty/themes/Sakura
|
||||
- share/ghostty/themes/Scarlet Protocol
|
||||
- share/ghostty/themes/SeaShells
|
||||
- share/ghostty/themes/Seafoam Pastel
|
||||
- share/ghostty/themes/Seti
|
||||
- share/ghostty/themes/Shaman
|
||||
- share/ghostty/themes/Slate
|
||||
- share/ghostty/themes/SleepyHollow
|
||||
- share/ghostty/themes/Smyck
|
||||
- share/ghostty/themes/Snazzy
|
||||
- share/ghostty/themes/Snazzy Soft
|
||||
- share/ghostty/themes/SoftServer
|
||||
- share/ghostty/themes/Solarized Darcula
|
||||
- share/ghostty/themes/Solarized Dark - Patched
|
||||
- share/ghostty/themes/Solarized Dark Higher Contrast
|
||||
- share/ghostty/themes/SpaceGray
|
||||
- share/ghostty/themes/SpaceGray Bright
|
||||
- share/ghostty/themes/SpaceGray Eighties
|
||||
- share/ghostty/themes/SpaceGray Eighties Dull
|
||||
- share/ghostty/themes/Spacedust
|
||||
- share/ghostty/themes/Spiderman
|
||||
- share/ghostty/themes/Spring
|
||||
- share/ghostty/themes/Square
|
||||
- share/ghostty/themes/Squirrelsong Dark
|
||||
- share/ghostty/themes/Sublette
|
||||
- share/ghostty/themes/Subliminal
|
||||
- share/ghostty/themes/Sugarplum
|
||||
- share/ghostty/themes/Sundried
|
||||
- share/ghostty/themes/Symfonic
|
||||
- share/ghostty/themes/SynthwaveAlpha
|
||||
- share/ghostty/themes/Tango Adapted
|
||||
- share/ghostty/themes/Tango Half Adapted
|
||||
- share/ghostty/themes/Teerb
|
||||
- share/ghostty/themes/Terminal Basic
|
||||
- share/ghostty/themes/Thayer Bright
|
||||
- share/ghostty/themes/The Hulk
|
||||
- share/ghostty/themes/Tinacious Design (Dark)
|
||||
- share/ghostty/themes/Tinacious Design (Light)
|
||||
- share/ghostty/themes/Tomorrow
|
||||
- share/ghostty/themes/Tomorrow Night
|
||||
- share/ghostty/themes/Tomorrow Night Blue
|
||||
- share/ghostty/themes/Tomorrow Night Bright
|
||||
- share/ghostty/themes/Tomorrow Night Burns
|
||||
- share/ghostty/themes/Tomorrow Night Eighties
|
||||
- share/ghostty/themes/ToyChest
|
||||
- share/ghostty/themes/Treehouse
|
||||
- share/ghostty/themes/Twilight
|
||||
- share/ghostty/themes/Ubuntu
|
||||
- share/ghostty/themes/UltraDark
|
||||
- share/ghostty/themes/UltraViolent
|
||||
- share/ghostty/themes/UnderTheSea
|
||||
- share/ghostty/themes/Unikitty
|
||||
- share/ghostty/themes/Urple
|
||||
- share/ghostty/themes/Vaughn
|
||||
- share/ghostty/themes/VibrantInk
|
||||
- share/ghostty/themes/Violet Dark
|
||||
- share/ghostty/themes/Violet Light
|
||||
- share/ghostty/themes/WarmNeon
|
||||
- share/ghostty/themes/Wez
|
||||
- share/ghostty/themes/Whimsy
|
||||
- share/ghostty/themes/WildCherry
|
||||
- share/ghostty/themes/Wombat
|
||||
- share/ghostty/themes/Wryan
|
||||
- share/ghostty/themes/Zenburn
|
||||
- share/ghostty/themes/arcoiris
|
||||
- share/ghostty/themes/ayu
|
||||
- share/ghostty/themes/ayu_light
|
||||
- share/ghostty/themes/carbonfox
|
||||
- share/ghostty/themes/catppuccin-frappe
|
||||
- share/ghostty/themes/catppuccin-latte
|
||||
- share/ghostty/themes/catppuccin-macchiato
|
||||
- share/ghostty/themes/catppuccin-mocha
|
||||
- share/ghostty/themes/citruszest
|
||||
- share/ghostty/themes/coffee_theme
|
||||
- share/ghostty/themes/cyberpunk
|
||||
- share/ghostty/themes/darkermatrix
|
||||
- share/ghostty/themes/darkmatrix
|
||||
- share/ghostty/themes/dawnfox
|
||||
- share/ghostty/themes/dayfox
|
||||
- share/ghostty/themes/deep
|
||||
- share/ghostty/themes/detuned
|
||||
- share/ghostty/themes/duckbones
|
||||
- share/ghostty/themes/duskfox
|
||||
- share/ghostty/themes/electron-highlighter
|
||||
- share/ghostty/themes/embers-dark
|
||||
- share/ghostty/themes/farmhouse-dark
|
||||
- share/ghostty/themes/farmhouse-light
|
||||
- share/ghostty/themes/flexoki-dark
|
||||
- share/ghostty/themes/flexoki-light
|
||||
- share/ghostty/themes/gruber-darker
|
||||
- share/ghostty/themes/gruvbox-material
|
||||
- share/ghostty/themes/heeler
|
||||
- share/ghostty/themes/iTerm2 Dark Background
|
||||
- share/ghostty/themes/iTerm2 Default
|
||||
- share/ghostty/themes/iTerm2 Light Background
|
||||
- share/ghostty/themes/iTerm2 Pastel Dark Background
|
||||
- share/ghostty/themes/iTerm2 Smoooooth
|
||||
- share/ghostty/themes/iTerm2 Solarized Dark
|
||||
- share/ghostty/themes/iTerm2 Solarized Light
|
||||
- share/ghostty/themes/iTerm2 Tango Dark
|
||||
- share/ghostty/themes/iTerm2 Tango Light
|
||||
- share/ghostty/themes/iceberg-dark
|
||||
- share/ghostty/themes/iceberg-light
|
||||
- share/ghostty/themes/idea
|
||||
- share/ghostty/themes/idleToes
|
||||
- share/ghostty/themes/jubi
|
||||
- share/ghostty/themes/kanagawabones
|
||||
- share/ghostty/themes/kurokula
|
||||
- share/ghostty/themes/lovelace
|
||||
- share/ghostty/themes/matrix
|
||||
- share/ghostty/themes/mellow
|
||||
- share/ghostty/themes/miasma
|
||||
- share/ghostty/themes/midnight-in-mojave
|
||||
- share/ghostty/themes/neobones_dark
|
||||
- share/ghostty/themes/neobones_light
|
||||
- share/ghostty/themes/nightfox
|
||||
- share/ghostty/themes/niji
|
||||
- share/ghostty/themes/nord
|
||||
- share/ghostty/themes/nord-light
|
||||
- share/ghostty/themes/nord-wave
|
||||
- share/ghostty/themes/nordfox
|
||||
- share/ghostty/themes/primary
|
||||
- share/ghostty/themes/purplepeter
|
||||
- share/ghostty/themes/rebecca
|
||||
- share/ghostty/themes/rose-pine
|
||||
- share/ghostty/themes/rose-pine-dawn
|
||||
- share/ghostty/themes/rose-pine-moon
|
||||
- share/ghostty/themes/seoulbones_dark
|
||||
- share/ghostty/themes/seoulbones_light
|
||||
- share/ghostty/themes/shades-of-purple
|
||||
- share/ghostty/themes/solarized-osaka-night
|
||||
- share/ghostty/themes/srcery
|
||||
- share/ghostty/themes/starlight
|
||||
- share/ghostty/themes/synthwave
|
||||
- share/ghostty/themes/synthwave-everything
|
||||
- share/ghostty/themes/terafox
|
||||
- share/ghostty/themes/tokyonight
|
||||
- share/ghostty/themes/tokyonight-day
|
||||
- share/ghostty/themes/tokyonight-storm
|
||||
- share/ghostty/themes/tokyonight_moon
|
||||
- share/ghostty/themes/tokyonight_night
|
||||
- share/ghostty/themes/vesper
|
||||
- share/ghostty/themes/vimbones
|
||||
- share/ghostty/themes/wilmersdorf
|
||||
- share/ghostty/themes/xcodedark
|
||||
- share/ghostty/themes/xcodedarkhc
|
||||
- share/ghostty/themes/xcodelight
|
||||
- share/ghostty/themes/xcodelighthc
|
||||
- share/ghostty/themes/xcodewwdc
|
||||
- share/ghostty/themes/zenbones
|
||||
- share/ghostty/themes/zenbones_dark
|
||||
- share/ghostty/themes/zenbones_light
|
||||
- share/ghostty/themes/zenburned
|
||||
- share/ghostty/themes/zenwritten_dark
|
||||
- share/ghostty/themes/zenwritten_light
|
||||
- share/ghostty/themes
|
||||
- share/ghostty/shell-integration/bash/bash-preexec.sh
|
||||
- share/ghostty/shell-integration/bash/ghostty.bash
|
||||
- share/ghostty/shell-integration/bash
|
||||
- share/ghostty/shell-integration/elvish/lib/ghostty-integration.elv
|
||||
- share/ghostty/shell-integration/elvish/lib
|
||||
- share/ghostty/shell-integration/elvish
|
||||
- share/ghostty/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fish
|
||||
- share/ghostty/shell-integration/fish/vendor_conf.d
|
||||
- share/ghostty/shell-integration/fish
|
||||
- share/ghostty/shell-integration/zsh/.zshenv
|
||||
- share/ghostty/shell-integration/zsh/ghostty-integration
|
||||
- share/ghostty/shell-integration/zsh
|
||||
- share/ghostty/shell-integration
|
||||
- share/ghostty/doc/ghostty.1.md
|
||||
- share/ghostty/doc/ghostty.1.html
|
||||
- share/ghostty/doc/ghostty.5.md
|
||||
- share/ghostty/doc/ghostty.5.html
|
||||
- share/ghostty/doc
|
||||
- share/ghostty
|
||||
- share/terminfo/x/xterm-ghostty
|
||||
- share/terminfo/g/ghostty
|
||||
- share/bat/syntaxes/ghostty.sublime-syntax
|
||||
- share/man/man1/ghostty.1
|
||||
- share/man/man5/ghostty.5
|
||||
- bin/ghostty
|
||||
|
||||
2127
vars/pkgs/neovim.yml
2127
vars/pkgs/neovim.yml
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user