├── .github └── workflows │ └── build.yaml ├── README.md ├── base ├── Packages-Root ├── profile.conf └── root-overlay │ ├── etc │ ├── X11 │ │ ├── xinit │ │ │ ├── xinitrc │ │ │ ├── xinitrc.d │ │ │ │ └── 80-dbus.sh │ │ │ └── xserverrc │ │ └── xorg.conf.d │ │ │ └── 30-touchpad.conf │ ├── calamares │ │ ├── branding │ │ │ └── metis │ │ │ │ ├── 1-welcometo.png │ │ │ │ ├── 1-welcometo.svg │ │ │ │ ├── 2-enjoy.png │ │ │ │ ├── 2-enjoy.svg │ │ │ │ ├── 3-star.png │ │ │ │ ├── 3-star.svg │ │ │ │ ├── 4-thanks.png │ │ │ │ ├── 4-thanks.svg │ │ │ │ ├── branding.desc │ │ │ │ ├── icons │ │ │ │ ├── about.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── fourm.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── issues.svg │ │ │ │ ├── language.svg │ │ │ │ ├── notes.svg │ │ │ │ └── web.svg │ │ │ │ ├── lang │ │ │ │ ├── calamares-default_ar.ts │ │ │ │ ├── calamares-default_en.ts │ │ │ │ ├── calamares-default_eo.ts │ │ │ │ ├── calamares-default_fr.ts │ │ │ │ └── calamares-default_nl.ts │ │ │ │ ├── languages.png │ │ │ │ ├── languages.png.license │ │ │ │ ├── metis-logo.png │ │ │ │ ├── show.qml │ │ │ │ ├── squid.png.license │ │ │ │ ├── stylesheet.qss │ │ │ │ ├── stylesheet.qss.bak │ │ │ │ └── wallpaper.jpg │ │ ├── modules │ │ │ ├── bootloader.conf │ │ │ ├── displaymanager.conf │ │ │ ├── finished.conf │ │ │ ├── initcpio.conf │ │ │ ├── machineid.conf │ │ │ ├── packages.conf │ │ │ ├── partition.conf │ │ │ ├── postcfg.conf │ │ │ ├── shellprocess-before.conf │ │ │ ├── shellprocess-final.conf │ │ │ ├── umount.conf │ │ │ ├── unpackfs.conf │ │ │ ├── users.conf │ │ │ └── welcome.conf │ │ └── settings.conf │ ├── default │ │ └── grub │ ├── doas.conf │ ├── fstab │ ├── hostname │ ├── hosts │ ├── issue │ ├── issue.live │ ├── lsb-release │ ├── os-release │ ├── pacman.conf │ ├── pacman.d │ │ ├── metis-mirrorlist-andromeda │ │ ├── metis-mirrorlist-cosmic │ │ ├── metis-mirrorlist-recon │ │ └── mirrorlist │ ├── pam.d │ │ └── su │ ├── passwd │ ├── polkit-1 │ │ └── rules.d │ │ │ └── 90-live.rules │ ├── runit │ │ └── sv │ │ │ └── agetty-tty1 │ │ │ └── conf │ └── sudoers.d │ │ ├── g_wheel │ │ └── u_root │ ├── root │ ├── .cache │ │ └── zsh │ │ │ └── history │ ├── .config │ │ ├── dunst │ │ │ └── dunstrc │ │ ├── dwm │ │ │ └── bar_themes │ │ │ │ ├── autumn │ │ │ │ ├── blosms │ │ │ │ ├── catppuccin │ │ │ │ ├── delight │ │ │ │ ├── harmony │ │ │ │ ├── ocean-breeze │ │ │ │ ├── onedark │ │ │ │ ├── serenade │ │ │ │ └── vintage │ │ ├── eww │ │ │ ├── eww.scss │ │ │ ├── eww.yuck │ │ │ ├── scripts │ │ │ │ ├── audio │ │ │ │ ├── fetch │ │ │ │ └── system │ │ │ ├── scss │ │ │ │ ├── focal │ │ │ │ │ ├── audioSlider.scss │ │ │ │ │ └── focal.scss │ │ │ │ ├── footer │ │ │ │ │ ├── backlight.scss │ │ │ │ │ ├── brightness.scss │ │ │ │ │ └── btns.scss │ │ │ │ ├── header │ │ │ │ │ ├── fetch.scss │ │ │ │ │ └── statusBtns.scss │ │ │ │ └── themes │ │ │ │ │ ├── catppuccin.scss │ │ │ │ │ ├── dracula.scss │ │ │ │ │ ├── eveforest.scss │ │ │ │ │ ├── everblush.scss │ │ │ │ │ ├── everforest.scss │ │ │ │ │ ├── gruvchad.scss │ │ │ │ │ ├── nord.scss │ │ │ │ │ ├── onedark.scss │ │ │ │ │ └── tokyonight.scss │ │ │ ├── src │ │ │ │ ├── dashboard.yuck │ │ │ │ ├── focal │ │ │ │ │ ├── audioSliders.yuck │ │ │ │ │ ├── init.yuck │ │ │ │ │ └── widgets.yuck │ │ │ │ ├── footer │ │ │ │ │ ├── btns.yuck │ │ │ │ │ └── init.yuck │ │ │ │ ├── header │ │ │ │ │ ├── fetch.yuck │ │ │ │ │ └── init.yuck │ │ │ │ └── widgets.yuck │ │ │ └── var.yuck │ │ ├── gtk-2.0 │ │ │ ├── gtkfilechooser.ini │ │ │ └── gtkrc-2.0 │ │ ├── gtk-3.0 │ │ │ └── settings.ini │ │ ├── helix │ │ │ ├── config.toml │ │ │ └── languages.toml │ │ ├── nsxiv │ │ │ └── exec │ │ │ │ └── key-handler │ │ ├── nvim │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── init.lua │ │ │ ├── lazy-lock.json │ │ │ └── lua │ │ │ │ ├── core │ │ │ │ ├── binder.lua │ │ │ │ ├── filetype.lua │ │ │ │ ├── icons.lua │ │ │ │ ├── lazy.lua │ │ │ │ ├── mappings.lua │ │ │ │ └── opts.lua │ │ │ │ └── plugins │ │ │ │ ├── autopairs.lua │ │ │ │ ├── bufferline.lua │ │ │ │ ├── catppuccin.lua │ │ │ │ ├── cmp.lua │ │ │ │ ├── gitsigns.lua │ │ │ │ ├── lspconfig.lua │ │ │ │ ├── mason.lua │ │ │ │ ├── null.lua │ │ │ │ ├── nvimtree.lua │ │ │ │ ├── nvterm.lua │ │ │ │ ├── sentiment.lua │ │ │ │ ├── staline.lua │ │ │ │ ├── telescope.lua │ │ │ │ └── treesitter.lua │ │ ├── picom │ │ │ └── picom.conf │ │ ├── ranger │ │ │ ├── colorschemes │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── default.cpython-311.pyc │ │ │ │ ├── default.py │ │ │ │ └── zenburn.py │ │ │ ├── commands.py │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ └── ranger_devicons │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ │ └── devicons.cpython-311.pyc │ │ │ │ │ └── devicons.py │ │ │ ├── rc.conf │ │ │ ├── rifle.conf │ │ │ └── scope.sh │ │ ├── shell │ │ │ ├── aliasrc │ │ │ ├── bm-dirs │ │ │ ├── bm-files │ │ │ ├── inputrc │ │ │ └── profile │ │ ├── tmux │ │ │ └── tmux.conf │ │ ├── wget │ │ │ └── wgetrc │ │ ├── x11 │ │ │ ├── xinitrc │ │ │ ├── xprofile │ │ │ └── xresources │ │ ├── zathura │ │ │ └── zathurarc │ │ └── zsh │ │ │ └── .zshrc │ ├── .local │ │ ├── bin │ │ │ ├── bookmarks │ │ │ ├── clp │ │ │ ├── colorbars │ │ │ ├── colorwheel │ │ │ ├── cov │ │ │ ├── dmenuwifi │ │ │ ├── doc2pdf │ │ │ ├── erg │ │ │ ├── f │ │ │ ├── gc │ │ │ ├── getlinks │ │ │ ├── ipcfg │ │ │ ├── learn │ │ │ ├── mp3 │ │ │ ├── mtcell │ │ │ ├── mus │ │ │ ├── o │ │ │ ├── pash │ │ │ ├── pingg │ │ │ ├── powermenu │ │ │ ├── preview │ │ │ ├── pwnfetch │ │ │ ├── quick │ │ │ ├── r │ │ │ ├── remaps │ │ │ ├── setbg │ │ │ ├── swpb │ │ │ ├── uf │ │ │ ├── wal │ │ │ └── webcam │ │ ├── share │ │ │ ├── bg │ │ │ └── nvim │ │ │ │ ├── .netrwhist │ │ │ │ ├── lazy │ │ │ │ ├── SchemaStore.nvim │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── generate.yaml │ │ │ │ │ │ │ └── test.yaml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ └── schemastore.txt │ │ │ │ │ ├── lua │ │ │ │ │ │ └── schemastore │ │ │ │ │ │ │ ├── catalog.lua │ │ │ │ │ │ │ ├── generate.lua │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── generate │ │ │ │ │ │ ├── mulberry.lua │ │ │ │ │ │ └── test │ │ │ │ │ ├── stylua.toml │ │ │ │ │ └── test │ │ │ │ │ │ ├── catalog.lua │ │ │ │ │ │ ├── generate.lua │ │ │ │ │ │ └── schemastore.lua │ │ │ │ ├── bufferline.nvim │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug-report.yml │ │ │ │ │ │ │ └── feature-request.yml │ │ │ │ │ │ ├── release.yaml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── ci.yaml │ │ │ │ │ │ │ └── contributing.yaml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luarc.json │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── bufferline.txt │ │ │ │ │ │ └── tags │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── bufferline.lua │ │ │ │ │ │ └── bufferline │ │ │ │ │ │ │ ├── buffers.lua │ │ │ │ │ │ │ ├── colors.lua │ │ │ │ │ │ │ ├── commands.lua │ │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ │ ├── constants.lua │ │ │ │ │ │ │ ├── custom_area.lua │ │ │ │ │ │ │ ├── diagnostics.lua │ │ │ │ │ │ │ ├── duplicates.lua │ │ │ │ │ │ │ ├── groups.lua │ │ │ │ │ │ │ ├── highlights.lua │ │ │ │ │ │ │ ├── hover.lua │ │ │ │ │ │ │ ├── lazy.lua │ │ │ │ │ │ │ ├── models.lua │ │ │ │ │ │ │ ├── numbers.lua │ │ │ │ │ │ │ ├── offset.lua │ │ │ │ │ │ │ ├── pick.lua │ │ │ │ │ │ │ ├── sorters.lua │ │ │ │ │ │ │ ├── state.lua │ │ │ │ │ │ │ ├── tabpages.lua │ │ │ │ │ │ │ ├── types.lua │ │ │ │ │ │ │ ├── ui.lua │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ └── log.lua │ │ │ │ │ ├── stylua.toml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── bufferline_spec.lua │ │ │ │ │ │ ├── colors_spec.lua │ │ │ │ │ │ ├── config_spec.lua │ │ │ │ │ │ ├── custom_area_spec.lua │ │ │ │ │ │ ├── duplicates_spec.lua │ │ │ │ │ │ ├── groups_spec.lua │ │ │ │ │ │ ├── highlights_spec.lua │ │ │ │ │ │ ├── minimal_init.lua │ │ │ │ │ │ ├── numbers_spec.lua │ │ │ │ │ │ ├── offset_spec.lua │ │ │ │ │ │ ├── sorters_spec.lua │ │ │ │ │ │ ├── ui_spec.lua │ │ │ │ │ │ ├── utils.lua │ │ │ │ │ │ └── utils_spec.lua │ │ │ │ ├── catppuccin.nvim │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── feature_request.md │ │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── formatting.yml │ │ │ │ │ │ │ ├── neovim.yml │ │ │ │ │ │ │ ├── pandocvim.yml │ │ │ │ │ │ │ ├── selene.yml │ │ │ │ │ │ │ ├── tests.yml │ │ │ │ │ │ │ └── vim.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── after │ │ │ │ │ │ └── queries │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ │ └── typescript │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ ├── autoload │ │ │ │ │ │ ├── airline │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ │ └── catppuccin.vim │ │ │ │ │ │ ├── clap │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ │ └── catppuccin.vim │ │ │ │ │ │ └── lightline │ │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ │ └── catppuccin.vim │ │ │ │ │ ├── colors │ │ │ │ │ │ ├── catppuccin-frappe.vim │ │ │ │ │ │ ├── catppuccin-latte.vim │ │ │ │ │ │ ├── catppuccin-macchiato.vim │ │ │ │ │ │ ├── catppuccin-mocha.vim │ │ │ │ │ │ └── catppuccin.vim │ │ │ │ │ ├── doc │ │ │ │ │ │ └── catppuccin.txt │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── barbecue │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ ├── catppuccin-frappe.lua │ │ │ │ │ │ │ │ ├── catppuccin-latte.lua │ │ │ │ │ │ │ │ ├── catppuccin-macchiato.lua │ │ │ │ │ │ │ │ ├── catppuccin-mocha.lua │ │ │ │ │ │ │ │ └── catppuccin.lua │ │ │ │ │ │ ├── catppuccin │ │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ │ ├── editor.lua │ │ │ │ │ │ │ │ ├── integrations │ │ │ │ │ │ │ │ │ ├── aerial.lua │ │ │ │ │ │ │ │ │ ├── alpha.lua │ │ │ │ │ │ │ │ │ ├── barbar.lua │ │ │ │ │ │ │ │ │ ├── beacon.lua │ │ │ │ │ │ │ │ │ ├── bufferline.lua │ │ │ │ │ │ │ │ │ ├── cmp.lua │ │ │ │ │ │ │ │ │ ├── coc_nvim.lua │ │ │ │ │ │ │ │ │ ├── dap.lua │ │ │ │ │ │ │ │ │ ├── dashboard.lua │ │ │ │ │ │ │ │ │ ├── feline.lua │ │ │ │ │ │ │ │ │ ├── fern.lua │ │ │ │ │ │ │ │ │ ├── fidget.lua │ │ │ │ │ │ │ │ │ ├── gitgutter.lua │ │ │ │ │ │ │ │ │ ├── gitsigns.lua │ │ │ │ │ │ │ │ │ ├── harpoon.lua │ │ │ │ │ │ │ │ │ ├── headlines.lua │ │ │ │ │ │ │ │ │ ├── hop.lua │ │ │ │ │ │ │ │ │ ├── illuminate.lua │ │ │ │ │ │ │ │ │ ├── indent_blankline.lua │ │ │ │ │ │ │ │ │ ├── leap.lua │ │ │ │ │ │ │ │ │ ├── lightspeed.lua │ │ │ │ │ │ │ │ │ ├── lsp_saga.lua │ │ │ │ │ │ │ │ │ ├── lsp_trouble.lua │ │ │ │ │ │ │ │ │ ├── markdown.lua │ │ │ │ │ │ │ │ │ ├── mason.lua │ │ │ │ │ │ │ │ │ ├── mini.lua │ │ │ │ │ │ │ │ │ ├── native_lsp.lua │ │ │ │ │ │ │ │ │ ├── navic.lua │ │ │ │ │ │ │ │ │ ├── neogit.lua │ │ │ │ │ │ │ │ │ ├── neotest.lua │ │ │ │ │ │ │ │ │ ├── neotree.lua │ │ │ │ │ │ │ │ │ ├── noice.lua │ │ │ │ │ │ │ │ │ ├── notify.lua │ │ │ │ │ │ │ │ │ ├── nvimtree.lua │ │ │ │ │ │ │ │ │ ├── octo.lua │ │ │ │ │ │ │ │ │ ├── overseer.lua │ │ │ │ │ │ │ │ │ ├── pounce.lua │ │ │ │ │ │ │ │ │ ├── sandwich.lua │ │ │ │ │ │ │ │ │ ├── semantic_tokens.lua │ │ │ │ │ │ │ │ │ ├── symbols_outline.lua │ │ │ │ │ │ │ │ │ ├── telekasten.lua │ │ │ │ │ │ │ │ │ ├── telescope.lua │ │ │ │ │ │ │ │ │ ├── treesitter.lua │ │ │ │ │ │ │ │ │ ├── treesitter_context.lua │ │ │ │ │ │ │ │ │ ├── ts_rainbow.lua │ │ │ │ │ │ │ │ │ ├── ts_rainbow2.lua │ │ │ │ │ │ │ │ │ ├── vim_sneak.lua │ │ │ │ │ │ │ │ │ ├── vimwiki.lua │ │ │ │ │ │ │ │ │ └── which_key.lua │ │ │ │ │ │ │ │ ├── syntax.lua │ │ │ │ │ │ │ │ └── terminal.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── compiler.lua │ │ │ │ │ │ │ │ ├── hashing.lua │ │ │ │ │ │ │ │ ├── highlighter.lua │ │ │ │ │ │ │ │ ├── hsluv.lua │ │ │ │ │ │ │ │ ├── mapper.lua │ │ │ │ │ │ │ │ └── vim │ │ │ │ │ │ │ │ │ ├── bit.lua │ │ │ │ │ │ │ │ │ ├── compiler.lua │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── palettes │ │ │ │ │ │ │ │ ├── frappe.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ ├── latte.lua │ │ │ │ │ │ │ │ ├── macchiato.lua │ │ │ │ │ │ │ │ └── mocha.lua │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── barbecue.lua │ │ │ │ │ │ │ │ ├── colors.lua │ │ │ │ │ │ │ │ └── lualine.lua │ │ │ │ │ │ └── lualine │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ ├── catppuccin-frappe.lua │ │ │ │ │ │ │ ├── catppuccin-latte.lua │ │ │ │ │ │ │ ├── catppuccin-macchiato.lua │ │ │ │ │ │ │ ├── catppuccin-mocha.lua │ │ │ │ │ │ │ └── catppuccin.lua │ │ │ │ │ ├── selene.toml │ │ │ │ │ ├── stylua.toml │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── colorscheme_spec.lua │ │ │ │ │ │ ├── compile_spec.lua │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ ├── init.vim │ │ │ │ │ │ ├── load_spec.lua │ │ │ │ │ │ ├── minimal_init.vim │ │ │ │ │ │ └── setup_spec.lua │ │ │ │ │ └── vim.yml │ │ │ │ ├── gitsigns.nvim │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yaml │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── feature_request.md │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ └── ci.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luacheckrc │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ └── gitsigns.txt │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── add_comments.lua │ │ │ │ │ │ └── doc_template.txt │ │ │ │ │ ├── gen_help.lua │ │ │ │ │ ├── gitsigns.nvim-scm-1.rockspec │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gitsigns.lua │ │ │ │ │ │ └── gitsigns │ │ │ │ │ │ │ ├── actions.lua │ │ │ │ │ │ │ ├── async.lua │ │ │ │ │ │ │ ├── attach.lua │ │ │ │ │ │ │ ├── cache.lua │ │ │ │ │ │ │ ├── cli.lua │ │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ └── argparse.lua │ │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ │ ├── current_line_blame.lua │ │ │ │ │ │ │ ├── debounce.lua │ │ │ │ │ │ │ ├── debug.lua │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── log.lua │ │ │ │ │ │ │ ├── diff.lua │ │ │ │ │ │ │ ├── diff_ext.lua │ │ │ │ │ │ │ ├── diff_int.lua │ │ │ │ │ │ │ ├── diffthis.lua │ │ │ │ │ │ │ ├── git.lua │ │ │ │ │ │ │ ├── highlight.lua │ │ │ │ │ │ │ ├── hunks.lua │ │ │ │ │ │ │ ├── manager.lua │ │ │ │ │ │ │ ├── mappings.lua │ │ │ │ │ │ │ ├── message.lua │ │ │ │ │ │ │ ├── popup.lua │ │ │ │ │ │ │ ├── repeat.lua │ │ │ │ │ │ │ ├── signs.lua │ │ │ │ │ │ │ ├── signs │ │ │ │ │ │ │ ├── base.lua │ │ │ │ │ │ │ ├── extmarks.lua │ │ │ │ │ │ │ └── vimfn.lua │ │ │ │ │ │ │ ├── status.lua │ │ │ │ │ │ │ ├── subprocess.lua │ │ │ │ │ │ │ ├── test.lua │ │ │ │ │ │ │ ├── util.lua │ │ │ │ │ │ │ └── uv.lua │ │ │ │ │ ├── teal │ │ │ │ │ │ ├── gitsigns.tl │ │ │ │ │ │ └── gitsigns │ │ │ │ │ │ │ ├── actions.tl │ │ │ │ │ │ │ ├── async.tl │ │ │ │ │ │ │ ├── attach.tl │ │ │ │ │ │ │ ├── cache.tl │ │ │ │ │ │ │ ├── cli.tl │ │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ └── argparse.tl │ │ │ │ │ │ │ ├── config.tl │ │ │ │ │ │ │ ├── current_line_blame.tl │ │ │ │ │ │ │ ├── debounce.tl │ │ │ │ │ │ │ ├── debug.tl │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── log.tl │ │ │ │ │ │ │ ├── diff.tl │ │ │ │ │ │ │ ├── diff_ext.tl │ │ │ │ │ │ │ ├── diff_int.tl │ │ │ │ │ │ │ ├── diffthis.tl │ │ │ │ │ │ │ ├── git.tl │ │ │ │ │ │ │ ├── highlight.tl │ │ │ │ │ │ │ ├── hunks.tl │ │ │ │ │ │ │ ├── manager.tl │ │ │ │ │ │ │ ├── mappings.tl │ │ │ │ │ │ │ ├── message.tl │ │ │ │ │ │ │ ├── popup.tl │ │ │ │ │ │ │ ├── repeat.tl │ │ │ │ │ │ │ ├── signs.tl │ │ │ │ │ │ │ ├── signs │ │ │ │ │ │ │ ├── base.tl │ │ │ │ │ │ │ ├── extmarks.tl │ │ │ │ │ │ │ └── vimfn.tl │ │ │ │ │ │ │ ├── status.tl │ │ │ │ │ │ │ ├── subprocess.tl │ │ │ │ │ │ │ ├── test.tl │ │ │ │ │ │ │ ├── util.tl │ │ │ │ │ │ │ └── uv.tl │ │ │ │ │ ├── test │ │ │ │ │ │ ├── actions_spec.lua │ │ │ │ │ │ ├── gitdir_watcher_spec.lua │ │ │ │ │ │ ├── gitsigns_spec.lua │ │ │ │ │ │ ├── gs_helpers.lua │ │ │ │ │ │ ├── highlights_spec.lua │ │ │ │ │ │ ├── preload.lua │ │ │ │ │ │ └── unit_spec.lua │ │ │ │ │ ├── tlconfig.lua │ │ │ │ │ └── types │ │ │ │ │ │ ├── ffi.d.tl │ │ │ │ │ │ ├── trouble.d.tl │ │ │ │ │ │ ├── types.d.tl │ │ │ │ │ │ ├── vim.d.tl │ │ │ │ │ │ └── vim │ │ │ │ │ │ ├── api.d.tl │ │ │ │ │ │ ├── fn.d.tl │ │ │ │ │ │ └── uv.d.tl │ │ │ │ ├── mason.nvim │ │ │ │ │ ├── .cbfmt.toml │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── feature_request.yaml │ │ │ │ │ │ │ ├── general_issue.yaml │ │ │ │ │ │ │ ├── new_package_request.yaml │ │ │ │ │ │ │ ├── package_installation_form.yaml │ │ │ │ │ │ │ └── package_issue.yaml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── cbfmt.yml │ │ │ │ │ │ │ ├── release.yml │ │ │ │ │ │ │ ├── selene.yml │ │ │ │ │ │ │ ├── stylua.yml │ │ │ │ │ │ │ └── tests.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── PACKAGES.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SECURITY.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── mason.txt │ │ │ │ │ │ └── reference.md │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── mason-core │ │ │ │ │ │ │ ├── EventEmitter.lua │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ ├── control.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ └── uv.lua │ │ │ │ │ │ │ ├── fetch.lua │ │ │ │ │ │ │ ├── fs.lua │ │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ │ ├── data.lua │ │ │ │ │ │ │ │ ├── function.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ ├── list.lua │ │ │ │ │ │ │ │ ├── logic.lua │ │ │ │ │ │ │ │ ├── number.lua │ │ │ │ │ │ │ │ ├── relation.lua │ │ │ │ │ │ │ │ ├── string.lua │ │ │ │ │ │ │ │ ├── table.lua │ │ │ │ │ │ │ │ └── type.lua │ │ │ │ │ │ │ ├── installer │ │ │ │ │ │ │ │ ├── context.lua │ │ │ │ │ │ │ │ ├── handle.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ ├── linker.lua │ │ │ │ │ │ │ │ ├── managers │ │ │ │ │ │ │ │ │ ├── build.lua │ │ │ │ │ │ │ │ │ ├── cargo.lua │ │ │ │ │ │ │ │ │ ├── composer.lua │ │ │ │ │ │ │ │ │ ├── gem.lua │ │ │ │ │ │ │ │ │ ├── golang.lua │ │ │ │ │ │ │ │ │ ├── luarocks.lua │ │ │ │ │ │ │ │ │ ├── npm.lua │ │ │ │ │ │ │ │ │ ├── nuget.lua │ │ │ │ │ │ │ │ │ ├── opam.lua │ │ │ │ │ │ │ │ │ ├── pypi.lua │ │ │ │ │ │ │ │ │ └── std.lua │ │ │ │ │ │ │ │ └── registry │ │ │ │ │ │ │ │ │ ├── expr.lua │ │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ │ ├── link.lua │ │ │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ │ ├── cargo.lua │ │ │ │ │ │ │ │ │ ├── composer.lua │ │ │ │ │ │ │ │ │ ├── gem.lua │ │ │ │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ │ │ │ ├── build.lua │ │ │ │ │ │ │ │ │ │ ├── download.lua │ │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ │ │ │ ├── build.lua │ │ │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ │ │ └── release.lua │ │ │ │ │ │ │ │ │ ├── golang.lua │ │ │ │ │ │ │ │ │ ├── luarocks.lua │ │ │ │ │ │ │ │ │ ├── npm.lua │ │ │ │ │ │ │ │ │ ├── nuget.lua │ │ │ │ │ │ │ │ │ ├── opam.lua │ │ │ │ │ │ │ │ │ └── pypi.lua │ │ │ │ │ │ │ │ │ ├── schemas.lua │ │ │ │ │ │ │ │ │ └── util.lua │ │ │ │ │ │ │ ├── log.lua │ │ │ │ │ │ │ ├── managers │ │ │ │ │ │ │ │ ├── cargo │ │ │ │ │ │ │ │ │ ├── client.lua │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── composer │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── dotnet │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── gem │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── git │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ │ │ ├── client.lua │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── luarocks │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── npm │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── opam │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── pip3 │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ ├── powershell │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ │ └── std │ │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── notify.lua │ │ │ │ │ │ │ ├── optional.lua │ │ │ │ │ │ │ ├── package │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ └── version-check.lua │ │ │ │ │ │ │ ├── path.lua │ │ │ │ │ │ │ ├── platform.lua │ │ │ │ │ │ │ ├── process.lua │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── purl.lua │ │ │ │ │ │ │ ├── receipt.lua │ │ │ │ │ │ │ ├── result.lua │ │ │ │ │ │ │ ├── semver.lua │ │ │ │ │ │ │ ├── spawn.lua │ │ │ │ │ │ │ ├── terminator.lua │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── display.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ └── state.lua │ │ │ │ │ │ ├── mason-registry │ │ │ │ │ │ │ ├── api.lua │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── installer.lua │ │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ │ ├── github.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ └── lua.lua │ │ │ │ │ │ ├── mason-vendor │ │ │ │ │ │ │ ├── semver.lua │ │ │ │ │ │ │ └── zzlib │ │ │ │ │ │ │ │ ├── inflate-bit32.lua │ │ │ │ │ │ │ │ ├── inflate-bwo.lua │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ └── mason │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── command.lua │ │ │ │ │ │ │ ├── health.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── gh.lua │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ ├── npm.lua │ │ │ │ │ │ │ │ └── pypi.lua │ │ │ │ │ │ │ └── registry-api │ │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── settings.lua │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── colors.lua │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── header.lua │ │ │ │ │ │ │ │ ├── help │ │ │ │ │ │ │ │ │ ├── dap.lua │ │ │ │ │ │ │ │ │ ├── formatter.lua │ │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ │ ├── linter.lua │ │ │ │ │ │ │ │ │ └── lsp.lua │ │ │ │ │ │ │ │ ├── json-schema.lua │ │ │ │ │ │ │ │ ├── language-filter.lua │ │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ │ │ └── package_list.lua │ │ │ │ │ │ │ │ └── tabs.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── instance.lua │ │ │ │ │ │ │ └── palette.lua │ │ │ │ │ │ │ └── version.lua │ │ │ │ │ ├── selene.toml │ │ │ │ │ ├── stylua.toml │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── purl-test-suite-data.json │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ └── lua │ │ │ │ │ │ │ │ ├── dummy-registry │ │ │ │ │ │ │ │ ├── dummy2_package.lua │ │ │ │ │ │ │ │ ├── dummy_package.lua │ │ │ │ │ │ │ │ ├── index.lua │ │ │ │ │ │ │ │ └── registry_package.lua │ │ │ │ │ │ │ │ ├── luassertx.lua │ │ │ │ │ │ │ │ └── test_helpers.lua │ │ │ │ │ │ ├── mason-core │ │ │ │ │ │ │ ├── EventEmitter_spec.lua │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ └── async_spec.lua │ │ │ │ │ │ │ ├── fetch_spec.lua │ │ │ │ │ │ │ ├── fs_spec.lua │ │ │ │ │ │ │ ├── functional │ │ │ │ │ │ │ │ ├── data_spec.lua │ │ │ │ │ │ │ │ ├── function_spec.lua │ │ │ │ │ │ │ │ ├── list_spec.lua │ │ │ │ │ │ │ │ ├── logic_spec.lua │ │ │ │ │ │ │ │ ├── number_spec.lua │ │ │ │ │ │ │ │ ├── relation_spec.lua │ │ │ │ │ │ │ │ ├── string_spec.lua │ │ │ │ │ │ │ │ ├── table_spec.lua │ │ │ │ │ │ │ │ └── type_spec.lua │ │ │ │ │ │ │ ├── installer │ │ │ │ │ │ │ │ ├── context_spec.lua │ │ │ │ │ │ │ │ ├── handle_spec.lua │ │ │ │ │ │ │ │ ├── installer_spec.lua │ │ │ │ │ │ │ │ ├── linker_spec.lua │ │ │ │ │ │ │ │ ├── managers │ │ │ │ │ │ │ │ │ ├── build_spec.lua │ │ │ │ │ │ │ │ │ ├── cargo_spec.lua │ │ │ │ │ │ │ │ │ ├── composer_spec.lua │ │ │ │ │ │ │ │ │ ├── gem_spec.lua │ │ │ │ │ │ │ │ │ ├── golang_spec.lua │ │ │ │ │ │ │ │ │ ├── luarocks_spec.lua │ │ │ │ │ │ │ │ │ ├── npm_spec.lua │ │ │ │ │ │ │ │ │ ├── nuget_spec.lua │ │ │ │ │ │ │ │ │ ├── opam_spec.lua │ │ │ │ │ │ │ │ │ ├── pypi_spec.lua │ │ │ │ │ │ │ │ │ └── std_spec.lua │ │ │ │ │ │ │ │ └── registry │ │ │ │ │ │ │ │ │ ├── expr_spec.lua │ │ │ │ │ │ │ │ │ ├── installer_spec.lua │ │ │ │ │ │ │ │ │ ├── link_spec.lua │ │ │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ │ ├── cargo_spec.lua │ │ │ │ │ │ │ │ │ ├── composer_spec.lua │ │ │ │ │ │ │ │ │ ├── gem_spec.lua │ │ │ │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ │ │ │ ├── build_spec.lua │ │ │ │ │ │ │ │ │ │ └── download_spec.lua │ │ │ │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ │ │ │ ├── build_spec.lua │ │ │ │ │ │ │ │ │ │ └── release_spec.lua │ │ │ │ │ │ │ │ │ ├── golang_spec.lua │ │ │ │ │ │ │ │ │ ├── luarocks_spec.lua │ │ │ │ │ │ │ │ │ ├── npm_spec.lua │ │ │ │ │ │ │ │ │ ├── nuget_spec.lua │ │ │ │ │ │ │ │ │ ├── opam_spec.lua │ │ │ │ │ │ │ │ │ └── pypi_spec.lua │ │ │ │ │ │ │ │ │ └── util_spec.lua │ │ │ │ │ │ │ ├── managers │ │ │ │ │ │ │ │ ├── cargo_spec.lua │ │ │ │ │ │ │ │ ├── composer_spec.lua │ │ │ │ │ │ │ │ ├── dotnet_spec.lua │ │ │ │ │ │ │ │ ├── gem_spec.lua │ │ │ │ │ │ │ │ ├── git_spec.lua │ │ │ │ │ │ │ │ ├── github_client_spec.lua │ │ │ │ │ │ │ │ ├── github_spec.lua │ │ │ │ │ │ │ │ ├── go_spec.lua │ │ │ │ │ │ │ │ ├── luarocks_spec.lua │ │ │ │ │ │ │ │ ├── npm_spec.lua │ │ │ │ │ │ │ │ ├── opam_spec.lua │ │ │ │ │ │ │ │ ├── pip3_spec.lua │ │ │ │ │ │ │ │ └── powershell_spec.lua │ │ │ │ │ │ │ ├── optional_spec.lua │ │ │ │ │ │ │ ├── package │ │ │ │ │ │ │ │ └── package_spec.lua │ │ │ │ │ │ │ ├── path_spec.lua │ │ │ │ │ │ │ ├── platform_spec.lua │ │ │ │ │ │ │ ├── process_spec.lua │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ └── provider_spec.lua │ │ │ │ │ │ │ ├── purl_spec.lua │ │ │ │ │ │ │ ├── result_spec.lua │ │ │ │ │ │ │ ├── spawn_spec.lua │ │ │ │ │ │ │ ├── terminator_spec.lua │ │ │ │ │ │ │ └── ui_spec.lua │ │ │ │ │ │ ├── mason-registry │ │ │ │ │ │ │ ├── api_spec.lua │ │ │ │ │ │ │ ├── registry_spec.lua │ │ │ │ │ │ │ └── sources │ │ │ │ │ │ │ │ └── lua_spec.lua │ │ │ │ │ │ ├── mason │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── command_spec.lua │ │ │ │ │ │ │ └── setup_spec.lua │ │ │ │ │ │ └── minimal_init.vim │ │ │ │ │ └── vim.yml │ │ │ │ ├── null-ls.nvim │ │ │ │ │ ├── .cbfmt.toml │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── feature_request.yml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── autogen.yml │ │ │ │ │ │ │ ├── default.yml │ │ │ │ │ │ │ └── sponsors.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .nvim.settings.json │ │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ │ ├── .prettierignore │ │ │ │ │ ├── .prettierrc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── BUILTINS.md │ │ │ │ │ │ ├── BUILTIN_CONFIG.md │ │ │ │ │ │ ├── CONFIG.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── HELPERS.md │ │ │ │ │ │ ├── MAIN.md │ │ │ │ │ │ ├── SOURCES.md │ │ │ │ │ │ └── TESTING.md │ │ │ │ │ ├── lua │ │ │ │ │ │ └── null-ls │ │ │ │ │ │ │ ├── builtins │ │ │ │ │ │ │ ├── _meta │ │ │ │ │ │ │ │ ├── code_actions.lua │ │ │ │ │ │ │ │ ├── completion.lua │ │ │ │ │ │ │ │ ├── diagnostics.lua │ │ │ │ │ │ │ │ ├── filetype_map.lua │ │ │ │ │ │ │ │ ├── formatting.lua │ │ │ │ │ │ │ │ └── hover.lua │ │ │ │ │ │ │ ├── _test │ │ │ │ │ │ │ │ ├── cached_code_action.lua │ │ │ │ │ │ │ │ ├── first_formatter.lua │ │ │ │ │ │ │ │ ├── mock_code_action.lua │ │ │ │ │ │ │ │ ├── mock_hover.lua │ │ │ │ │ │ │ │ ├── mock_multiple_file_diagnostics.lua │ │ │ │ │ │ │ │ ├── second_formatter.lua │ │ │ │ │ │ │ │ ├── slow_code_action.lua │ │ │ │ │ │ │ │ └── toggle_line_comment.lua │ │ │ │ │ │ │ ├── code_actions │ │ │ │ │ │ │ │ ├── cspell.lua │ │ │ │ │ │ │ │ ├── eslint.lua │ │ │ │ │ │ │ │ ├── eslint_d.lua │ │ │ │ │ │ │ │ ├── gitrebase.lua │ │ │ │ │ │ │ │ ├── gitsigns.lua │ │ │ │ │ │ │ │ ├── gomodifytags.lua │ │ │ │ │ │ │ │ ├── impl.lua │ │ │ │ │ │ │ │ ├── ltrs.lua │ │ │ │ │ │ │ │ ├── proselint.lua │ │ │ │ │ │ │ │ ├── refactoring.lua │ │ │ │ │ │ │ │ ├── shellcheck.lua │ │ │ │ │ │ │ │ ├── statix.lua │ │ │ │ │ │ │ │ ├── ts_node_action.lua │ │ │ │ │ │ │ │ └── xo.lua │ │ │ │ │ │ │ ├── completion │ │ │ │ │ │ │ │ ├── luasnip.lua │ │ │ │ │ │ │ │ ├── spell.lua │ │ │ │ │ │ │ │ ├── tags.lua │ │ │ │ │ │ │ │ └── vsnip.lua │ │ │ │ │ │ │ ├── diagnostics │ │ │ │ │ │ │ │ ├── actionlint.lua │ │ │ │ │ │ │ │ ├── alex.lua │ │ │ │ │ │ │ │ ├── ansiblelint.lua │ │ │ │ │ │ │ │ ├── bslint.lua │ │ │ │ │ │ │ │ ├── buf.lua │ │ │ │ │ │ │ │ ├── buildifier.lua │ │ │ │ │ │ │ │ ├── cfn_lint.lua │ │ │ │ │ │ │ │ ├── checkmake.lua │ │ │ │ │ │ │ │ ├── checkstyle.lua │ │ │ │ │ │ │ │ ├── chktex.lua │ │ │ │ │ │ │ │ ├── clang_check.lua │ │ │ │ │ │ │ │ ├── clazy.lua │ │ │ │ │ │ │ │ ├── clj_kondo.lua │ │ │ │ │ │ │ │ ├── cmake_lint.lua │ │ │ │ │ │ │ │ ├── codespell.lua │ │ │ │ │ │ │ │ ├── commitlint.lua │ │ │ │ │ │ │ │ ├── cppcheck.lua │ │ │ │ │ │ │ │ ├── cpplint.lua │ │ │ │ │ │ │ │ ├── credo.lua │ │ │ │ │ │ │ │ ├── cspell.lua │ │ │ │ │ │ │ │ ├── cue_fmt.lua │ │ │ │ │ │ │ │ ├── curlylint.lua │ │ │ │ │ │ │ │ ├── deadnix.lua │ │ │ │ │ │ │ │ ├── djlint.lua │ │ │ │ │ │ │ │ ├── dotenv_linter.lua │ │ │ │ │ │ │ │ ├── editorconfig_checker.lua │ │ │ │ │ │ │ │ ├── erb_lint.lua │ │ │ │ │ │ │ │ ├── eslint.lua │ │ │ │ │ │ │ │ ├── eslint_d.lua │ │ │ │ │ │ │ │ ├── fish.lua │ │ │ │ │ │ │ │ ├── flake8.lua │ │ │ │ │ │ │ │ ├── gccdiag.lua │ │ │ │ │ │ │ │ ├── gdlint.lua │ │ │ │ │ │ │ │ ├── gitlint.lua │ │ │ │ │ │ │ │ ├── glslc.lua │ │ │ │ │ │ │ │ ├── golangci_lint.lua │ │ │ │ │ │ │ │ ├── gospel.lua │ │ │ │ │ │ │ │ ├── hadolint.lua │ │ │ │ │ │ │ │ ├── haml_lint.lua │ │ │ │ │ │ │ │ ├── jshint.lua │ │ │ │ │ │ │ │ ├── jsonlint.lua │ │ │ │ │ │ │ │ ├── ktlint.lua │ │ │ │ │ │ │ │ ├── ltrs.lua │ │ │ │ │ │ │ │ ├── luacheck.lua │ │ │ │ │ │ │ │ ├── markdownlint.lua │ │ │ │ │ │ │ │ ├── markdownlint_cli2.lua │ │ │ │ │ │ │ │ ├── markuplint.lua │ │ │ │ │ │ │ │ ├── mdl.lua │ │ │ │ │ │ │ │ ├── misspell.lua │ │ │ │ │ │ │ │ ├── mlint.lua │ │ │ │ │ │ │ │ ├── mypy.lua │ │ │ │ │ │ │ │ ├── npm_groovy_lint.lua │ │ │ │ │ │ │ │ ├── opacheck.lua │ │ │ │ │ │ │ │ ├── perlimports.lua │ │ │ │ │ │ │ │ ├── php.lua │ │ │ │ │ │ │ │ ├── phpcs.lua │ │ │ │ │ │ │ │ ├── phpmd.lua │ │ │ │ │ │ │ │ ├── phpstan.lua │ │ │ │ │ │ │ │ ├── pmd.lua │ │ │ │ │ │ │ │ ├── proselint.lua │ │ │ │ │ │ │ │ ├── protoc_gen_lint.lua │ │ │ │ │ │ │ │ ├── protolint.lua │ │ │ │ │ │ │ │ ├── psalm.lua │ │ │ │ │ │ │ │ ├── puglint.lua │ │ │ │ │ │ │ │ ├── puppet_lint.lua │ │ │ │ │ │ │ │ ├── pycodestyle.lua │ │ │ │ │ │ │ │ ├── pydocstyle.lua │ │ │ │ │ │ │ │ ├── pylama.lua │ │ │ │ │ │ │ │ ├── pylint.lua │ │ │ │ │ │ │ │ ├── pyproject_flake8.lua │ │ │ │ │ │ │ │ ├── qmllint.lua │ │ │ │ │ │ │ │ ├── reek.lua │ │ │ │ │ │ │ │ ├── revive.lua │ │ │ │ │ │ │ │ ├── rpmspec.lua │ │ │ │ │ │ │ │ ├── rstcheck.lua │ │ │ │ │ │ │ │ ├── rubocop.lua │ │ │ │ │ │ │ │ ├── ruff.lua │ │ │ │ │ │ │ │ ├── saltlint.lua │ │ │ │ │ │ │ │ ├── selene.lua │ │ │ │ │ │ │ │ ├── semgrep.lua │ │ │ │ │ │ │ │ ├── semistandardjs.lua │ │ │ │ │ │ │ │ ├── shellcheck.lua │ │ │ │ │ │ │ │ ├── solhint.lua │ │ │ │ │ │ │ │ ├── spectral.lua │ │ │ │ │ │ │ │ ├── sqlfluff.lua │ │ │ │ │ │ │ │ ├── standardjs.lua │ │ │ │ │ │ │ │ ├── standardrb.lua │ │ │ │ │ │ │ │ ├── staticcheck.lua │ │ │ │ │ │ │ │ ├── statix.lua │ │ │ │ │ │ │ │ ├── stylelint.lua │ │ │ │ │ │ │ │ ├── stylint.lua │ │ │ │ │ │ │ │ ├── swiftlint.lua │ │ │ │ │ │ │ │ ├── teal.lua │ │ │ │ │ │ │ │ ├── terraform_validate.lua │ │ │ │ │ │ │ │ ├── textlint.lua │ │ │ │ │ │ │ │ ├── tfsec.lua │ │ │ │ │ │ │ │ ├── tidy.lua │ │ │ │ │ │ │ │ ├── todo_comments.lua │ │ │ │ │ │ │ │ ├── trail_space.lua │ │ │ │ │ │ │ │ ├── tsc.lua │ │ │ │ │ │ │ │ ├── twigcs.lua │ │ │ │ │ │ │ │ ├── vacuum.lua │ │ │ │ │ │ │ │ ├── vale.lua │ │ │ │ │ │ │ │ ├── verilator.lua │ │ │ │ │ │ │ │ ├── vint.lua │ │ │ │ │ │ │ │ ├── vulture.lua │ │ │ │ │ │ │ │ ├── write_good.lua │ │ │ │ │ │ │ │ ├── xo.lua │ │ │ │ │ │ │ │ ├── yamllint.lua │ │ │ │ │ │ │ │ └── zsh.lua │ │ │ │ │ │ │ ├── formatting │ │ │ │ │ │ │ │ ├── alejandra.lua │ │ │ │ │ │ │ │ ├── asmfmt.lua │ │ │ │ │ │ │ │ ├── astyle.lua │ │ │ │ │ │ │ │ ├── autoflake.lua │ │ │ │ │ │ │ │ ├── autopep8.lua │ │ │ │ │ │ │ │ ├── bean_format.lua │ │ │ │ │ │ │ │ ├── beautysh.lua │ │ │ │ │ │ │ │ ├── bibclean.lua │ │ │ │ │ │ │ │ ├── black.lua │ │ │ │ │ │ │ │ ├── blade_formatter.lua │ │ │ │ │ │ │ │ ├── blue.lua │ │ │ │ │ │ │ │ ├── brittany.lua │ │ │ │ │ │ │ │ ├── bsfmt.lua │ │ │ │ │ │ │ │ ├── buf.lua │ │ │ │ │ │ │ │ ├── buildifier.lua │ │ │ │ │ │ │ │ ├── cabal_fmt.lua │ │ │ │ │ │ │ │ ├── cbfmt.lua │ │ │ │ │ │ │ │ ├── clang_format.lua │ │ │ │ │ │ │ │ ├── cljstyle.lua │ │ │ │ │ │ │ │ ├── cmake_format.lua │ │ │ │ │ │ │ │ ├── codespell.lua │ │ │ │ │ │ │ │ ├── crystal_format.lua │ │ │ │ │ │ │ │ ├── csharpier.lua │ │ │ │ │ │ │ │ ├── cue_fmt.lua │ │ │ │ │ │ │ │ ├── cueimports.lua │ │ │ │ │ │ │ │ ├── dart_format.lua │ │ │ │ │ │ │ │ ├── deno_fmt.lua │ │ │ │ │ │ │ │ ├── dfmt.lua │ │ │ │ │ │ │ │ ├── djhtml.lua │ │ │ │ │ │ │ │ ├── djlint.lua │ │ │ │ │ │ │ │ ├── dprint.lua │ │ │ │ │ │ │ │ ├── elm_format.lua │ │ │ │ │ │ │ │ ├── emacs_scheme_mode.lua │ │ │ │ │ │ │ │ ├── emacs_vhdl_mode.lua │ │ │ │ │ │ │ │ ├── erb_format.lua │ │ │ │ │ │ │ │ ├── erb_lint.lua │ │ │ │ │ │ │ │ ├── erlfmt.lua │ │ │ │ │ │ │ │ ├── eslint.lua │ │ │ │ │ │ │ │ ├── eslint_d.lua │ │ │ │ │ │ │ │ ├── fantomas.lua │ │ │ │ │ │ │ │ ├── fish_indent.lua │ │ │ │ │ │ │ │ ├── fixjson.lua │ │ │ │ │ │ │ │ ├── fnlfmt.lua │ │ │ │ │ │ │ │ ├── format_r.lua │ │ │ │ │ │ │ │ ├── fourmolu.lua │ │ │ │ │ │ │ │ ├── fprettify.lua │ │ │ │ │ │ │ │ ├── gdformat.lua │ │ │ │ │ │ │ │ ├── gersemi.lua │ │ │ │ │ │ │ │ ├── gn_format.lua │ │ │ │ │ │ │ │ ├── gofmt.lua │ │ │ │ │ │ │ │ ├── gofumpt.lua │ │ │ │ │ │ │ │ ├── goimports.lua │ │ │ │ │ │ │ │ ├── goimports_reviser.lua │ │ │ │ │ │ │ │ ├── golines.lua │ │ │ │ │ │ │ │ ├── google_java_format.lua │ │ │ │ │ │ │ │ ├── haxe_formatter.lua │ │ │ │ │ │ │ │ ├── hclfmt.lua │ │ │ │ │ │ │ │ ├── htmlbeautifier.lua │ │ │ │ │ │ │ │ ├── isort.lua │ │ │ │ │ │ │ │ ├── joker.lua │ │ │ │ │ │ │ │ ├── jq.lua │ │ │ │ │ │ │ │ ├── json_tool.lua │ │ │ │ │ │ │ │ ├── just.lua │ │ │ │ │ │ │ │ ├── ktlint.lua │ │ │ │ │ │ │ │ ├── latexindent.lua │ │ │ │ │ │ │ │ ├── lua_format.lua │ │ │ │ │ │ │ │ ├── markdown_toc.lua │ │ │ │ │ │ │ │ ├── markdownlint.lua │ │ │ │ │ │ │ │ ├── mdformat.lua │ │ │ │ │ │ │ │ ├── mix.lua │ │ │ │ │ │ │ │ ├── nginx_beautifier.lua │ │ │ │ │ │ │ │ ├── nimpretty.lua │ │ │ │ │ │ │ │ ├── nixfmt.lua │ │ │ │ │ │ │ │ ├── nixpkgs_fmt.lua │ │ │ │ │ │ │ │ ├── npm_groovy_lint.lua │ │ │ │ │ │ │ │ ├── ocamlformat.lua │ │ │ │ │ │ │ │ ├── ocdc.lua │ │ │ │ │ │ │ │ ├── packer.lua │ │ │ │ │ │ │ │ ├── perlimports.lua │ │ │ │ │ │ │ │ ├── perltidy.lua │ │ │ │ │ │ │ │ ├── pg_format.lua │ │ │ │ │ │ │ │ ├── phpcbf.lua │ │ │ │ │ │ │ │ ├── phpcsfixer.lua │ │ │ │ │ │ │ │ ├── pint.lua │ │ │ │ │ │ │ │ ├── prettier.lua │ │ │ │ │ │ │ │ ├── prettier_d_slim.lua │ │ │ │ │ │ │ │ ├── prettier_eslint.lua │ │ │ │ │ │ │ │ ├── prettier_standard.lua │ │ │ │ │ │ │ │ ├── prettierd.lua │ │ │ │ │ │ │ │ ├── prismaFmt.lua │ │ │ │ │ │ │ │ ├── protolint.lua │ │ │ │ │ │ │ │ ├── ptop.lua │ │ │ │ │ │ │ │ ├── puppet_lint.lua │ │ │ │ │ │ │ │ ├── purs_tidy.lua │ │ │ │ │ │ │ │ ├── pyflyby.lua │ │ │ │ │ │ │ │ ├── qmlformat.lua │ │ │ │ │ │ │ │ ├── raco_fmt.lua │ │ │ │ │ │ │ │ ├── rego.lua │ │ │ │ │ │ │ │ ├── remark.lua │ │ │ │ │ │ │ │ ├── reorder_python_imports.lua │ │ │ │ │ │ │ │ ├── rescript.lua │ │ │ │ │ │ │ │ ├── rome.lua │ │ │ │ │ │ │ │ ├── rubocop.lua │ │ │ │ │ │ │ │ ├── rubyfmt.lua │ │ │ │ │ │ │ │ ├── ruff.lua │ │ │ │ │ │ │ │ ├── rufo.lua │ │ │ │ │ │ │ │ ├── rustfmt.lua │ │ │ │ │ │ │ │ ├── rustywind.lua │ │ │ │ │ │ │ │ ├── scalafmt.lua │ │ │ │ │ │ │ │ ├── semistandardjs.lua │ │ │ │ │ │ │ │ ├── shellharden.lua │ │ │ │ │ │ │ │ ├── shfmt.lua │ │ │ │ │ │ │ │ ├── smlfmt.lua │ │ │ │ │ │ │ │ ├── sql_formatter.lua │ │ │ │ │ │ │ │ ├── sqlfluff.lua │ │ │ │ │ │ │ │ ├── sqlfmt.lua │ │ │ │ │ │ │ │ ├── sqlformat.lua │ │ │ │ │ │ │ │ ├── standardjs.lua │ │ │ │ │ │ │ │ ├── standardrb.lua │ │ │ │ │ │ │ │ ├── standardts.lua │ │ │ │ │ │ │ │ ├── stylelint.lua │ │ │ │ │ │ │ │ ├── styler.lua │ │ │ │ │ │ │ │ ├── stylish_haskell.lua │ │ │ │ │ │ │ │ ├── stylua.lua │ │ │ │ │ │ │ │ ├── surface.lua │ │ │ │ │ │ │ │ ├── swift-format.lua │ │ │ │ │ │ │ │ ├── swiftformat.lua │ │ │ │ │ │ │ │ ├── swiftlint.lua │ │ │ │ │ │ │ │ ├── taplo.lua │ │ │ │ │ │ │ │ ├── terrafmt.lua │ │ │ │ │ │ │ │ ├── terraform_fmt.lua │ │ │ │ │ │ │ │ ├── textlint.lua │ │ │ │ │ │ │ │ ├── tidy.lua │ │ │ │ │ │ │ │ ├── treefmt.lua │ │ │ │ │ │ │ │ ├── trim_newlines.lua │ │ │ │ │ │ │ │ ├── trim_whitespace.lua │ │ │ │ │ │ │ │ ├── uncrustify.lua │ │ │ │ │ │ │ │ ├── usort.lua │ │ │ │ │ │ │ │ ├── verible_verilog_format.lua │ │ │ │ │ │ │ │ ├── xmlformat.lua │ │ │ │ │ │ │ │ ├── xmllint.lua │ │ │ │ │ │ │ │ ├── xq.lua │ │ │ │ │ │ │ │ ├── yamlfix.lua │ │ │ │ │ │ │ │ ├── yamlfmt.lua │ │ │ │ │ │ │ │ ├── yapf.lua │ │ │ │ │ │ │ │ ├── yq.lua │ │ │ │ │ │ │ │ ├── zigfmt.lua │ │ │ │ │ │ │ │ └── zprint.lua │ │ │ │ │ │ │ ├── hover │ │ │ │ │ │ │ │ ├── dictionary.lua │ │ │ │ │ │ │ │ └── printenv.lua │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ │ ├── client.lua │ │ │ │ │ │ │ ├── code-actions.lua │ │ │ │ │ │ │ ├── completion.lua │ │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ │ ├── diagnostics.lua │ │ │ │ │ │ │ ├── diff.lua │ │ │ │ │ │ │ ├── formatting.lua │ │ │ │ │ │ │ ├── generators.lua │ │ │ │ │ │ │ ├── health.lua │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── cache.lua │ │ │ │ │ │ │ ├── command_resolver.lua │ │ │ │ │ │ │ ├── diagnostics.lua │ │ │ │ │ │ │ ├── formatter_factory.lua │ │ │ │ │ │ │ ├── generator_factory.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── make_builtin.lua │ │ │ │ │ │ │ └── range_formatting_args_factory.lua │ │ │ │ │ │ │ ├── hover.lua │ │ │ │ │ │ │ ├── info.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── logger.lua │ │ │ │ │ │ │ ├── loop.lua │ │ │ │ │ │ │ ├── methods.lua │ │ │ │ │ │ │ ├── rpc.lua │ │ │ │ │ │ │ ├── sources.lua │ │ │ │ │ │ │ ├── state.lua │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── make_params.lua │ │ │ │ │ │ │ └── test.lua │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── autogen.lua │ │ │ │ │ │ ├── autogen.sh │ │ │ │ │ │ └── minimal_init.lua │ │ │ │ │ ├── selene.toml │ │ │ │ │ ├── stylua.toml │ │ │ │ │ ├── test │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── cat │ │ │ │ │ │ │ ├── range-formatting.js │ │ │ │ │ │ │ ├── test-file.js │ │ │ │ │ │ │ ├── test-file.lua │ │ │ │ │ │ │ ├── test-file.md │ │ │ │ │ │ │ ├── test-file.tl │ │ │ │ │ │ │ └── test-file.txt │ │ │ │ │ │ ├── minimal_init.lua │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ └── sleep-and-echo.sh │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── builtins │ │ │ │ │ │ │ └── diagnostics_spec.lua │ │ │ │ │ │ │ ├── client_spec.lua │ │ │ │ │ │ │ ├── code-actions_spec.lua │ │ │ │ │ │ │ ├── completion_spec.lua │ │ │ │ │ │ │ ├── config_spec.lua │ │ │ │ │ │ │ ├── diagnostics_spec.lua │ │ │ │ │ │ │ ├── diff_spec.lua │ │ │ │ │ │ │ ├── e2e_spec.lua │ │ │ │ │ │ │ ├── formatting_spec.lua │ │ │ │ │ │ │ ├── generators_spec.lua │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── cache_spec.lua │ │ │ │ │ │ │ ├── formatter_factory_spec.lua │ │ │ │ │ │ │ ├── generator_factory_spec.lua │ │ │ │ │ │ │ ├── make_builtin_spec.lua │ │ │ │ │ │ │ └── range_formatting_args_factory_spec.lua │ │ │ │ │ │ │ ├── hover_spec.lua │ │ │ │ │ │ │ ├── init_spec.lua │ │ │ │ │ │ │ ├── loop_spec.lua │ │ │ │ │ │ │ ├── rpc_spec.lua │ │ │ │ │ │ │ ├── sources_spec.lua │ │ │ │ │ │ │ ├── state_spec.lua │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── make_params_spec.lua │ │ │ │ │ │ │ └── utils_spec.lua │ │ │ │ │ └── vim.toml │ │ │ │ ├── nvim-autopairs │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── feature_request.md │ │ │ │ │ │ ├── generated-files-bot.yml │ │ │ │ │ │ ├── stale.yml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── ci.yml │ │ │ │ │ │ │ └── docs.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luarc.json │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── nvim-autopairs-rules.txt │ │ │ │ │ │ └── nvim-autopairs.txt │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── nvim-autopairs.lua │ │ │ │ │ │ └── nvim-autopairs │ │ │ │ │ │ │ ├── _log.lua │ │ │ │ │ │ │ ├── completion │ │ │ │ │ │ │ ├── cmp.lua │ │ │ │ │ │ │ ├── compe.lua │ │ │ │ │ │ │ └── handlers.lua │ │ │ │ │ │ │ ├── conds.lua │ │ │ │ │ │ │ ├── fastwrap.lua │ │ │ │ │ │ │ ├── rule.lua │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ ├── basic.lua │ │ │ │ │ │ │ ├── endwise-elixir.lua │ │ │ │ │ │ │ ├── endwise-lua.lua │ │ │ │ │ │ │ ├── endwise-ruby.lua │ │ │ │ │ │ │ └── ts_basic.lua │ │ │ │ │ │ │ ├── ts-conds.lua │ │ │ │ │ │ │ ├── ts-rule.lua │ │ │ │ │ │ │ ├── ts-utils.lua │ │ │ │ │ │ │ └── utils.lua │ │ │ │ │ ├── style.toml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── afterquote_spec.lua │ │ │ │ │ │ ├── endwise │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── main.rs │ │ │ │ │ │ ├── ruby.rb │ │ │ │ │ │ └── sample.lua │ │ │ │ │ │ ├── endwise_spec.lua │ │ │ │ │ │ ├── fastwrap_spec.lua │ │ │ │ │ │ ├── minimal.vim │ │ │ │ │ │ ├── nvim-autopairs_spec.lua │ │ │ │ │ │ ├── test_utils.lua │ │ │ │ │ │ ├── treesitter_spec.lua │ │ │ │ │ │ └── utils_spec.lua │ │ │ │ ├── nvim-lspconfig │ │ │ │ │ ├── .codespellignorewords │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── feature_request.yml │ │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ │ │ │ │ └── pull_request_template.md │ │ │ │ │ │ ├── ci │ │ │ │ │ │ │ └── run_sanitizer.sh │ │ │ │ │ │ ├── dependabot.yml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── codespell.yml │ │ │ │ │ │ │ ├── comment-config-changes.yml │ │ │ │ │ │ │ ├── commit_lint.yml │ │ │ │ │ │ │ ├── docgen.yml │ │ │ │ │ │ │ ├── lint.yml │ │ │ │ │ │ │ ├── problem_matchers │ │ │ │ │ │ │ └── selene.json │ │ │ │ │ │ │ ├── release.yml │ │ │ │ │ │ │ ├── sanitizer.yml │ │ │ │ │ │ │ └── test.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luacheckrc │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── lspconfig.txt │ │ │ │ │ │ ├── server_configurations.md │ │ │ │ │ │ └── server_configurations.txt │ │ │ │ │ ├── flake.lock │ │ │ │ │ ├── flake.nix │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── lspconfig.lua │ │ │ │ │ │ └── lspconfig │ │ │ │ │ │ │ ├── configs.lua │ │ │ │ │ │ │ ├── server_configurations │ │ │ │ │ │ │ ├── als.lua │ │ │ │ │ │ │ ├── anakin_language_server.lua │ │ │ │ │ │ │ ├── angularls.lua │ │ │ │ │ │ │ ├── ansiblels.lua │ │ │ │ │ │ │ ├── antlersls.lua │ │ │ │ │ │ │ ├── apex_ls.lua │ │ │ │ │ │ │ ├── arduino_language_server.lua │ │ │ │ │ │ │ ├── asm_lsp.lua │ │ │ │ │ │ │ ├── astro.lua │ │ │ │ │ │ │ ├── awk_ls.lua │ │ │ │ │ │ │ ├── azure_pipelines_ls.lua │ │ │ │ │ │ │ ├── bashls.lua │ │ │ │ │ │ │ ├── beancount.lua │ │ │ │ │ │ │ ├── bicep.lua │ │ │ │ │ │ │ ├── blueprint_ls.lua │ │ │ │ │ │ │ ├── bright_script.lua │ │ │ │ │ │ │ ├── bsl_ls.lua │ │ │ │ │ │ │ ├── buck2.lua │ │ │ │ │ │ │ ├── bufls.lua │ │ │ │ │ │ │ ├── cadence.lua │ │ │ │ │ │ │ ├── cairo_ls.lua │ │ │ │ │ │ │ ├── ccls.lua │ │ │ │ │ │ │ ├── clangd.lua │ │ │ │ │ │ │ ├── clarity_lsp.lua │ │ │ │ │ │ │ ├── clojure_lsp.lua │ │ │ │ │ │ │ ├── cmake.lua │ │ │ │ │ │ │ ├── codeqlls.lua │ │ │ │ │ │ │ ├── coffeesense.lua │ │ │ │ │ │ │ ├── crystalline.lua │ │ │ │ │ │ │ ├── csharp_ls.lua │ │ │ │ │ │ │ ├── cssls.lua │ │ │ │ │ │ │ ├── cssmodules_ls.lua │ │ │ │ │ │ │ ├── cucumber_language_server.lua │ │ │ │ │ │ │ ├── custom_elements_ls.lua │ │ │ │ │ │ │ ├── dafny.lua │ │ │ │ │ │ │ ├── dagger.lua │ │ │ │ │ │ │ ├── dartls.lua │ │ │ │ │ │ │ ├── denols.lua │ │ │ │ │ │ │ ├── dhall_lsp_server.lua │ │ │ │ │ │ │ ├── diagnosticls.lua │ │ │ │ │ │ │ ├── digestif.lua │ │ │ │ │ │ │ ├── docker_compose_language_service.lua │ │ │ │ │ │ │ ├── dockerls.lua │ │ │ │ │ │ │ ├── dolmenls.lua │ │ │ │ │ │ │ ├── dotls.lua │ │ │ │ │ │ │ ├── drools_lsp.lua │ │ │ │ │ │ │ ├── ds_pinyin_lsp.lua │ │ │ │ │ │ │ ├── ecsact.lua │ │ │ │ │ │ │ ├── efm.lua │ │ │ │ │ │ │ ├── elixirls.lua │ │ │ │ │ │ │ ├── elmls.lua │ │ │ │ │ │ │ ├── ember.lua │ │ │ │ │ │ │ ├── emmet_ls.lua │ │ │ │ │ │ │ ├── erg_language_server.lua │ │ │ │ │ │ │ ├── erlangls.lua │ │ │ │ │ │ │ ├── esbonio.lua │ │ │ │ │ │ │ ├── eslint.lua │ │ │ │ │ │ │ ├── fennel_language_server.lua │ │ │ │ │ │ │ ├── fennel_ls.lua │ │ │ │ │ │ │ ├── flow.lua │ │ │ │ │ │ │ ├── flux_lsp.lua │ │ │ │ │ │ │ ├── foam_ls.lua │ │ │ │ │ │ │ ├── fortls.lua │ │ │ │ │ │ │ ├── fsautocomplete.lua │ │ │ │ │ │ │ ├── fsharp_language_server.lua │ │ │ │ │ │ │ ├── fstar.lua │ │ │ │ │ │ │ ├── futhark_lsp.lua │ │ │ │ │ │ │ ├── gdscript.lua │ │ │ │ │ │ │ ├── ghcide.lua │ │ │ │ │ │ │ ├── ghdl_ls.lua │ │ │ │ │ │ │ ├── gleam.lua │ │ │ │ │ │ │ ├── glint.lua │ │ │ │ │ │ │ ├── glslls.lua │ │ │ │ │ │ │ ├── golangci_lint_ls.lua │ │ │ │ │ │ │ ├── gopls.lua │ │ │ │ │ │ │ ├── gradle_ls.lua │ │ │ │ │ │ │ ├── grammarly.lua │ │ │ │ │ │ │ ├── graphql.lua │ │ │ │ │ │ │ ├── groovyls.lua │ │ │ │ │ │ │ ├── haxe_language_server.lua │ │ │ │ │ │ │ ├── hdl_checker.lua │ │ │ │ │ │ │ ├── helm_ls.lua │ │ │ │ │ │ │ ├── hhvm.lua │ │ │ │ │ │ │ ├── hie.lua │ │ │ │ │ │ │ ├── hls.lua │ │ │ │ │ │ │ ├── hoon_ls.lua │ │ │ │ │ │ │ ├── html.lua │ │ │ │ │ │ │ ├── idris2_lsp.lua │ │ │ │ │ │ │ ├── intelephense.lua │ │ │ │ │ │ │ ├── java_language_server.lua │ │ │ │ │ │ │ ├── jdtls.lua │ │ │ │ │ │ │ ├── jedi_language_server.lua │ │ │ │ │ │ │ ├── jqls.lua │ │ │ │ │ │ │ ├── jsonls.lua │ │ │ │ │ │ │ ├── jsonnet_ls.lua │ │ │ │ │ │ │ ├── julials.lua │ │ │ │ │ │ │ ├── kotlin_language_server.lua │ │ │ │ │ │ │ ├── lean3ls.lua │ │ │ │ │ │ │ ├── leanls.lua │ │ │ │ │ │ │ ├── lelwel_ls.lua │ │ │ │ │ │ │ ├── lemminx.lua │ │ │ │ │ │ │ ├── ltex.lua │ │ │ │ │ │ │ ├── lua_ls.lua │ │ │ │ │ │ │ ├── luau_lsp.lua │ │ │ │ │ │ │ ├── m68k.lua │ │ │ │ │ │ │ ├── marksman.lua │ │ │ │ │ │ │ ├── metals.lua │ │ │ │ │ │ │ ├── millet.lua │ │ │ │ │ │ │ ├── mint.lua │ │ │ │ │ │ │ ├── mlir_lsp_server.lua │ │ │ │ │ │ │ ├── mlir_pdll_lsp_server.lua │ │ │ │ │ │ │ ├── mm0_ls.lua │ │ │ │ │ │ │ ├── move_analyzer.lua │ │ │ │ │ │ │ ├── neocmake.lua │ │ │ │ │ │ │ ├── nickel_ls.lua │ │ │ │ │ │ │ ├── nil_ls.lua │ │ │ │ │ │ │ ├── nim_langserver.lua │ │ │ │ │ │ │ ├── nimls.lua │ │ │ │ │ │ │ ├── nomad_lsp.lua │ │ │ │ │ │ │ ├── ntt.lua │ │ │ │ │ │ │ ├── nxls.lua │ │ │ │ │ │ │ ├── ocamlls.lua │ │ │ │ │ │ │ ├── ocamllsp.lua │ │ │ │ │ │ │ ├── ols.lua │ │ │ │ │ │ │ ├── omnisharp.lua │ │ │ │ │ │ │ ├── opencl_ls.lua │ │ │ │ │ │ │ ├── openedge_ls.lua │ │ │ │ │ │ │ ├── openscad_ls.lua │ │ │ │ │ │ │ ├── openscad_lsp.lua │ │ │ │ │ │ │ ├── pact_ls.lua │ │ │ │ │ │ │ ├── pasls.lua │ │ │ │ │ │ │ ├── perlls.lua │ │ │ │ │ │ │ ├── perlnavigator.lua │ │ │ │ │ │ │ ├── perlpls.lua │ │ │ │ │ │ │ ├── phan.lua │ │ │ │ │ │ │ ├── phpactor.lua │ │ │ │ │ │ │ ├── please.lua │ │ │ │ │ │ │ ├── powershell_es.lua │ │ │ │ │ │ │ ├── prismals.lua │ │ │ │ │ │ │ ├── prolog_ls.lua │ │ │ │ │ │ │ ├── prosemd_lsp.lua │ │ │ │ │ │ │ ├── psalm.lua │ │ │ │ │ │ │ ├── puppet.lua │ │ │ │ │ │ │ ├── purescriptls.lua │ │ │ │ │ │ │ ├── pylsp.lua │ │ │ │ │ │ │ ├── pylyzer.lua │ │ │ │ │ │ │ ├── pyre.lua │ │ │ │ │ │ │ ├── pyright.lua │ │ │ │ │ │ │ ├── qml_lsp.lua │ │ │ │ │ │ │ ├── qmlls.lua │ │ │ │ │ │ │ ├── quick_lint_js.lua │ │ │ │ │ │ │ ├── r_language_server.lua │ │ │ │ │ │ │ ├── racket_langserver.lua │ │ │ │ │ │ │ ├── raku_navigator.lua │ │ │ │ │ │ │ ├── reason_ls.lua │ │ │ │ │ │ │ ├── relay_lsp.lua │ │ │ │ │ │ │ ├── remark_ls.lua │ │ │ │ │ │ │ ├── rescriptls.lua │ │ │ │ │ │ │ ├── rls.lua │ │ │ │ │ │ │ ├── rnix.lua │ │ │ │ │ │ │ ├── robotframework_ls.lua │ │ │ │ │ │ │ ├── rome.lua │ │ │ │ │ │ │ ├── ruby_ls.lua │ │ │ │ │ │ │ ├── ruff_lsp.lua │ │ │ │ │ │ │ ├── rust_analyzer.lua │ │ │ │ │ │ │ ├── salt_ls.lua │ │ │ │ │ │ │ ├── scheme_langserver.lua │ │ │ │ │ │ │ ├── scry.lua │ │ │ │ │ │ │ ├── serve_d.lua │ │ │ │ │ │ │ ├── sixtyfps.lua │ │ │ │ │ │ │ ├── slint_lsp.lua │ │ │ │ │ │ │ ├── smarty_ls.lua │ │ │ │ │ │ │ ├── smithy_ls.lua │ │ │ │ │ │ │ ├── solang.lua │ │ │ │ │ │ │ ├── solargraph.lua │ │ │ │ │ │ │ ├── solc.lua │ │ │ │ │ │ │ ├── solidity.lua │ │ │ │ │ │ │ ├── solidity_ls.lua │ │ │ │ │ │ │ ├── sorbet.lua │ │ │ │ │ │ │ ├── sourcekit.lua │ │ │ │ │ │ │ ├── sourcery.lua │ │ │ │ │ │ │ ├── spectral.lua │ │ │ │ │ │ │ ├── sqlls.lua │ │ │ │ │ │ │ ├── sqls.lua │ │ │ │ │ │ │ ├── standardrb.lua │ │ │ │ │ │ │ ├── starlark_rust.lua │ │ │ │ │ │ │ ├── steep.lua │ │ │ │ │ │ │ ├── stylelint_lsp.lua │ │ │ │ │ │ │ ├── svelte.lua │ │ │ │ │ │ │ ├── svlangserver.lua │ │ │ │ │ │ │ ├── svls.lua │ │ │ │ │ │ │ ├── syntax_tree.lua │ │ │ │ │ │ │ ├── tailwindcss.lua │ │ │ │ │ │ │ ├── taplo.lua │ │ │ │ │ │ │ ├── tblgen_lsp_server.lua │ │ │ │ │ │ │ ├── teal_ls.lua │ │ │ │ │ │ │ ├── terraform_lsp.lua │ │ │ │ │ │ │ ├── terraformls.lua │ │ │ │ │ │ │ ├── texlab.lua │ │ │ │ │ │ │ ├── textlsp.lua │ │ │ │ │ │ │ ├── tflint.lua │ │ │ │ │ │ │ ├── theme_check.lua │ │ │ │ │ │ │ ├── tilt_ls.lua │ │ │ │ │ │ │ ├── tsserver.lua │ │ │ │ │ │ │ ├── turtle_ls.lua │ │ │ │ │ │ │ ├── typeprof.lua │ │ │ │ │ │ │ ├── typst_lsp.lua │ │ │ │ │ │ │ ├── unison.lua │ │ │ │ │ │ │ ├── unocss.lua │ │ │ │ │ │ │ ├── uvls.lua │ │ │ │ │ │ │ ├── vala_ls.lua │ │ │ │ │ │ │ ├── vdmj.lua │ │ │ │ │ │ │ ├── verible.lua │ │ │ │ │ │ │ ├── veridian.lua │ │ │ │ │ │ │ ├── veryl_ls.lua │ │ │ │ │ │ │ ├── vhdl_ls.lua │ │ │ │ │ │ │ ├── vimls.lua │ │ │ │ │ │ │ ├── visualforce_ls.lua │ │ │ │ │ │ │ ├── vls.lua │ │ │ │ │ │ │ ├── volar.lua │ │ │ │ │ │ │ ├── vtsls.lua │ │ │ │ │ │ │ ├── vuels.lua │ │ │ │ │ │ │ ├── wgsl_analyzer.lua │ │ │ │ │ │ │ ├── yamlls.lua │ │ │ │ │ │ │ ├── yls.lua │ │ │ │ │ │ │ ├── zk.lua │ │ │ │ │ │ │ └── zls.lua │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── lspinfo.lua │ │ │ │ │ │ │ └── windows.lua │ │ │ │ │ │ │ └── util.lua │ │ │ │ │ ├── neovim.yml │ │ │ │ │ ├── nvim-lspconfig-scm-1.rockspec │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── lspconfig.lua │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── README_template.md │ │ │ │ │ │ ├── docgen.lua │ │ │ │ │ │ ├── docgen.sh │ │ │ │ │ │ └── run_test.sh │ │ │ │ │ ├── selene.toml │ │ │ │ │ └── test │ │ │ │ │ │ ├── lspconfig_spec.lua │ │ │ │ │ │ ├── minimal_init.lua │ │ │ │ │ │ └── test_dir │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── a_marker.txt │ │ │ │ │ │ └── root_marker.txt │ │ │ │ ├── nvim-treesitter │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── CODEOWNERS │ │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ │ ├── feature_request.md │ │ │ │ │ │ │ └── highlighting_issue.yml │ │ │ │ │ │ ├── mergify.yml │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── lint.yml │ │ │ │ │ │ │ ├── release.yml │ │ │ │ │ │ │ ├── test-queries.yml │ │ │ │ │ │ │ ├── tests.yml │ │ │ │ │ │ │ ├── update-lockfile.yml │ │ │ │ │ │ │ └── update-readme.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luacheckrc │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ ├── .styluaignore │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── autoload │ │ │ │ │ │ └── nvim_treesitter.vim │ │ │ │ │ ├── doc │ │ │ │ │ │ └── nvim-treesitter.txt │ │ │ │ │ ├── lockfile.json │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── nvim-treesitter.lua │ │ │ │ │ │ └── nvim-treesitter │ │ │ │ │ │ │ ├── caching.lua │ │ │ │ │ │ │ ├── compat.lua │ │ │ │ │ │ │ ├── configs.lua │ │ │ │ │ │ │ ├── fold.lua │ │ │ │ │ │ │ ├── health.lua │ │ │ │ │ │ │ ├── highlight.lua │ │ │ │ │ │ │ ├── incremental_selection.lua │ │ │ │ │ │ │ ├── indent.lua │ │ │ │ │ │ │ ├── info.lua │ │ │ │ │ │ │ ├── install.lua │ │ │ │ │ │ │ ├── locals.lua │ │ │ │ │ │ │ ├── parsers.lua │ │ │ │ │ │ │ ├── query.lua │ │ │ │ │ │ │ ├── query_predicates.lua │ │ │ │ │ │ │ ├── shell_command_selectors.lua │ │ │ │ │ │ │ ├── statusline.lua │ │ │ │ │ │ │ ├── ts_utils.lua │ │ │ │ │ │ │ ├── tsrange.lua │ │ │ │ │ │ │ └── utils.lua │ │ │ │ │ ├── nvim-treesitter-scm-1.rockspec │ │ │ │ │ ├── parser-info │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── parser │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── nvim-treesitter.lua │ │ │ │ │ ├── queries │ │ │ │ │ │ ├── ada │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── agda │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── arduino │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── astro │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── awk │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── bash │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── bass │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── beancount │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── bibtex │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── bicep │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── blueprint │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── c_sharp │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── capnp │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── chatito │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── clojure │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── cooklang │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── cpon │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── cuda │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── cue │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── dart │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── devicetree │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── dhall │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── dot │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── ebnf │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── ecma │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── eex │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── elixir │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── elm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── elsa │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── elvish │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── embedded_template │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── erlang │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── fennel │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── firrtl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── fish │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── foam │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── fortran │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── fsh │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── func │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── fusion │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── gdscript │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── git_config │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── git_rebase │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── gitattributes │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── gitcommit │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── gitignore │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── gleam │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── glimmer │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── glsl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── godot_resource │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── gomod │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── gosum │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── gowork │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── hack │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── hare │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── haskell │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── hcl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── heex │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── hjson │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── hlsl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── hocon │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── html_tags │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── htmldjango │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── ini │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── janet_simple │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── jq │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── jsdoc │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── json5 │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── jsonc │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── jsonnet │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── julia │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── kdl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── lalrpop │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── latex │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── ledger │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── llvm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── lua │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── luadoc │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── luap │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── luau │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── m68k │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── make │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── markdown_inline │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── matlab │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── menhir │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── mermaid │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── meson │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── mlir │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── nickel │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── ninja │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── nix │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ocaml │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ocaml_interface │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ocamllex │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── pascal │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── passwd │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── perl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── phpdoc │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── pioasm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── po │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── poe_filter │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── pony │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── prisma │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── proto │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── prql │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── pug │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── puppet │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ql │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── qmljs │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── r │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── racket │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── rasi │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── regex │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── rego │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── rnoweb │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── ron │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── rst │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── rust │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── scala │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── scss │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── slint │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── smali │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── smithy │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── solidity │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── sparql │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── squirrel │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── starlark │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── supercollider │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── surface │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── svelte │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── swift │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── sxhkdrc │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── t32 │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── tablegen │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── teal │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── terraform │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── thrift │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── tiger │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── tlaplus │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── todotxt │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── toml │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── tsx │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── turtle │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── twig │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── typescript │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── ungrammar │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── uxntal │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── v │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── vala │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── verilog │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── vhs │ │ │ │ │ │ │ └── highlights.scm │ │ │ │ │ │ ├── vim │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── vimdoc │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── vue │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── wgsl │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── wgsl_bevy │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ └── indents.scm │ │ │ │ │ │ ├── yaml │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ ├── yang │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ └── injections.scm │ │ │ │ │ │ ├── yuck │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ │ └── zig │ │ │ │ │ │ │ ├── folds.scm │ │ │ │ │ │ │ ├── highlights.scm │ │ │ │ │ │ │ ├── indents.scm │ │ │ │ │ │ │ ├── injections.scm │ │ │ │ │ │ │ └── locals.scm │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── check-queries.lua │ │ │ │ │ │ ├── ci-install-macos-latest.sh │ │ │ │ │ │ ├── ci-install-ubuntu-latest.sh │ │ │ │ │ │ ├── ci-install-windows-2022.sh │ │ │ │ │ │ ├── compile_parsers.makefile │ │ │ │ │ │ ├── minimal_init.lua │ │ │ │ │ │ ├── pre-push │ │ │ │ │ │ ├── run_tests.sh │ │ │ │ │ │ ├── update-lockfile.sh │ │ │ │ │ │ ├── update-readme.lua │ │ │ │ │ │ └── write-lockfile.lua │ │ │ │ │ └── tests │ │ │ │ │ │ ├── indent │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ │ ├── trailing.py │ │ │ │ │ │ │ └── trailing_whitespace.html │ │ │ │ │ │ ├── algorithm_spec.lua │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ ├── aligned_indent.c │ │ │ │ │ │ │ ├── array.c │ │ │ │ │ │ │ ├── comment.c │ │ │ │ │ │ │ ├── compound_lit.c │ │ │ │ │ │ │ ├── cond.c │ │ │ │ │ │ │ ├── enum.c │ │ │ │ │ │ │ ├── expr.c │ │ │ │ │ │ │ ├── func.c │ │ │ │ │ │ │ ├── if_else.c │ │ │ │ │ │ │ ├── issue-1568.c │ │ │ │ │ │ │ ├── issue-2086.c │ │ │ │ │ │ │ ├── issue-4079.c │ │ │ │ │ │ │ ├── issue-4117.c │ │ │ │ │ │ │ ├── issue-4525.c │ │ │ │ │ │ │ ├── label.c │ │ │ │ │ │ │ ├── loop.c │ │ │ │ │ │ │ ├── no_braces.c │ │ │ │ │ │ │ ├── preproc_cond.c │ │ │ │ │ │ │ ├── preproc_func.c │ │ │ │ │ │ │ ├── string.c │ │ │ │ │ │ │ ├── struct.c │ │ │ │ │ │ │ ├── switch.c │ │ │ │ │ │ │ ├── ternary.c │ │ │ │ │ │ │ └── unfinished_comment.c │ │ │ │ │ │ ├── c_spec.lua │ │ │ │ │ │ ├── capnp │ │ │ │ │ │ │ └── test.capnp │ │ │ │ │ │ ├── capnp_spec.lua │ │ │ │ │ │ ├── common.lua │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── access.cpp │ │ │ │ │ │ │ ├── class.cpp │ │ │ │ │ │ │ ├── initializer_list.cpp │ │ │ │ │ │ │ └── stream.cpp │ │ │ │ │ │ ├── cpp_spec.lua │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── next_rule.css │ │ │ │ │ │ │ └── open_block.css │ │ │ │ │ │ ├── css_spec.lua │ │ │ │ │ │ ├── dart │ │ │ │ │ │ │ ├── class.dart │ │ │ │ │ │ │ ├── class_function_argument.dart │ │ │ │ │ │ │ ├── multiple_arguments.dart │ │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ │ └── try.dart │ │ │ │ │ │ ├── dart_spec.lua │ │ │ │ │ │ ├── ecma │ │ │ │ │ │ │ ├── array-issue3382.js │ │ │ │ │ │ │ ├── binary_expression.js │ │ │ │ │ │ │ ├── callback.js │ │ │ │ │ │ │ ├── class.js │ │ │ │ │ │ │ ├── func.js │ │ │ │ │ │ │ ├── if_else.js │ │ │ │ │ │ │ ├── issue-2515.js │ │ │ │ │ │ │ ├── new-line-after-class.js │ │ │ │ │ │ │ ├── object.js │ │ │ │ │ │ │ ├── switch.js │ │ │ │ │ │ │ ├── ternary.js │ │ │ │ │ │ │ ├── try_catch.js │ │ │ │ │ │ │ └── variable.js │ │ │ │ │ │ ├── gdscript │ │ │ │ │ │ │ └── basic_blocks.gd │ │ │ │ │ │ ├── gdscript_spec.lua │ │ │ │ │ │ ├── gleam │ │ │ │ │ │ │ ├── assert.gleam │ │ │ │ │ │ │ ├── binary_expression.gleam │ │ │ │ │ │ │ ├── case.gleam │ │ │ │ │ │ │ ├── constant.gleam │ │ │ │ │ │ │ ├── function.gleam │ │ │ │ │ │ │ ├── import.gleam │ │ │ │ │ │ │ ├── let.gleam │ │ │ │ │ │ │ ├── list.gleam │ │ │ │ │ │ │ ├── pipe.gleam │ │ │ │ │ │ │ ├── todo.gleam │ │ │ │ │ │ │ ├── try.gleam │ │ │ │ │ │ │ ├── tuple.gleam │ │ │ │ │ │ │ └── type.gleam │ │ │ │ │ │ ├── gleam_spec.lua │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ ├── const_declaration.go │ │ │ │ │ │ │ ├── issue-2369-newline.go │ │ │ │ │ │ │ ├── issue-2369.go │ │ │ │ │ │ │ ├── issue-3288.go │ │ │ │ │ │ │ ├── multiple-vars.go │ │ │ │ │ │ │ ├── select.go │ │ │ │ │ │ │ └── switch.go │ │ │ │ │ │ ├── go_spec.lua │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── issue-1981.graphql │ │ │ │ │ │ ├── graphql_spec.lua │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── issue-3986.html │ │ │ │ │ │ │ ├── script_style.html │ │ │ │ │ │ │ ├── self_closing_tag.html │ │ │ │ │ │ │ └── start_tag.html │ │ │ │ │ │ ├── html_spec.lua │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── class_with_annotation.java │ │ │ │ │ │ │ ├── constructor_with_arguments_on_multiple_lines.java │ │ │ │ │ │ │ ├── enum.java │ │ │ │ │ │ │ ├── enum_with_annotation.java │ │ │ │ │ │ │ ├── interface.java │ │ │ │ │ │ │ ├── issue_2571.java │ │ │ │ │ │ │ ├── issue_2583.java │ │ │ │ │ │ │ ├── javadoc.java │ │ │ │ │ │ │ ├── method.java │ │ │ │ │ │ │ ├── method_chaining.java │ │ │ │ │ │ │ └── method_with_arguments_on_multiple_lines.java │ │ │ │ │ │ ├── java_spec.lua │ │ │ │ │ │ ├── javascript_spec.lua │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── element_attributes.jsx │ │ │ │ │ │ │ ├── issue-3986.jsx │ │ │ │ │ │ │ └── jsx_expression.jsx │ │ │ │ │ │ ├── jsx_spec.lua │ │ │ │ │ │ ├── lua │ │ │ │ │ │ │ ├── comment.lua │ │ │ │ │ │ │ ├── cond.lua │ │ │ │ │ │ │ ├── func.lua │ │ │ │ │ │ │ ├── loop.lua │ │ │ │ │ │ │ ├── method_index_expr.lua │ │ │ │ │ │ │ ├── nested-table.lua │ │ │ │ │ │ │ ├── no-indent-after-paren-pairs.lua │ │ │ │ │ │ │ ├── string.lua │ │ │ │ │ │ │ └── table.lua │ │ │ │ │ │ ├── lua_spec.lua │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ ├── enum-indent.php │ │ │ │ │ │ │ ├── example.php │ │ │ │ │ │ │ ├── example2.php │ │ │ │ │ │ │ ├── issue-2497.php │ │ │ │ │ │ │ ├── issue-3591.php │ │ │ │ │ │ │ └── unfinished-call.php │ │ │ │ │ │ ├── php_spec.lua │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── aligned_indent.py │ │ │ │ │ │ │ ├── aligned_indent_2.py │ │ │ │ │ │ │ ├── basic_blocks.py │ │ │ │ │ │ │ ├── basic_collections.py │ │ │ │ │ │ │ ├── branches.py │ │ │ │ │ │ │ ├── break_continue.py │ │ │ │ │ │ │ ├── comprehensions.py │ │ │ │ │ │ │ ├── control_flow.py │ │ │ │ │ │ │ ├── error_state_def.py │ │ │ │ │ │ │ ├── error_state_dict.py │ │ │ │ │ │ │ ├── error_state_funcall.py │ │ │ │ │ │ │ ├── error_state_list.py │ │ │ │ │ │ │ ├── error_state_set.py │ │ │ │ │ │ │ ├── error_state_tuple.py │ │ │ │ │ │ │ ├── error_state_tuple_align.py │ │ │ │ │ │ │ ├── hanging_indent.py │ │ │ │ │ │ │ ├── if_else.py │ │ │ │ │ │ │ ├── join_lines.py │ │ │ │ │ │ │ ├── line_after_indent.py │ │ │ │ │ │ │ ├── match_case.py │ │ │ │ │ │ │ ├── nested_collections.py │ │ │ │ │ │ │ ├── return_dedent.py │ │ │ │ │ │ │ └── strings.py │ │ │ │ │ │ ├── python_spec.lua │ │ │ │ │ │ ├── ql │ │ │ │ │ │ │ └── module.ql │ │ │ │ │ │ ├── ql_spec.lua │ │ │ │ │ │ ├── r │ │ │ │ │ │ │ ├── aligned_indent.R │ │ │ │ │ │ │ ├── comment.R │ │ │ │ │ │ │ ├── cond.R │ │ │ │ │ │ │ ├── func.R │ │ │ │ │ │ │ ├── loop.R │ │ │ │ │ │ │ └── pipe.R │ │ │ │ │ │ ├── r_spec.lua │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ ├── indent-assignment.rb │ │ │ │ │ │ │ ├── indent-brackets.rb │ │ │ │ │ │ │ ├── indent-ensure.rb │ │ │ │ │ │ │ ├── indent-parens.rb │ │ │ │ │ │ │ ├── indent-parenthesized-statements.rb │ │ │ │ │ │ │ ├── indent-rescue.rb │ │ │ │ │ │ │ ├── indent-square-brackets.rb │ │ │ │ │ │ │ ├── indent-unless.rb │ │ │ │ │ │ │ └── period-issue-3364.rb │ │ │ │ │ │ ├── ruby_spec.lua │ │ │ │ │ │ ├── rust │ │ │ │ │ │ │ ├── array.rs │ │ │ │ │ │ │ ├── comment.rs │ │ │ │ │ │ │ ├── cond.rs │ │ │ │ │ │ │ ├── enum.rs │ │ │ │ │ │ │ ├── func.rs │ │ │ │ │ │ │ ├── if_let_cond.rs │ │ │ │ │ │ │ ├── impl.rs │ │ │ │ │ │ │ ├── loop.rs │ │ │ │ │ │ │ ├── macro.rs │ │ │ │ │ │ │ ├── match.rs │ │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ │ ├── string.rs │ │ │ │ │ │ │ ├── struct.rs │ │ │ │ │ │ │ ├── trait.rs │ │ │ │ │ │ │ └── where.rs │ │ │ │ │ │ ├── rust_spec.lua │ │ │ │ │ │ ├── smali │ │ │ │ │ │ │ ├── array_and_switch.smali │ │ │ │ │ │ │ ├── field.smali │ │ │ │ │ │ │ ├── method.smali │ │ │ │ │ │ │ └── parameter.smali │ │ │ │ │ │ ├── smali_spec.lua │ │ │ │ │ │ ├── swift │ │ │ │ │ │ │ ├── declarations.swift │ │ │ │ │ │ │ ├── expressions.swift │ │ │ │ │ │ │ └── statements.swift │ │ │ │ │ │ ├── swift_spec.lua │ │ │ │ │ │ ├── terraform │ │ │ │ │ │ │ ├── function_call.tf │ │ │ │ │ │ │ ├── indent-in-multiline-objects.tf │ │ │ │ │ │ │ ├── indent-in-multiline-tuples.tf │ │ │ │ │ │ │ ├── multiline-comments.tf │ │ │ │ │ │ │ ├── multiple-attributes.tf │ │ │ │ │ │ │ ├── multiple-blocks.tf │ │ │ │ │ │ │ ├── nested_blocks.tf │ │ │ │ │ │ │ └── no-indent-after-brace.tf │ │ │ │ │ │ ├── terraform_spec.lua │ │ │ │ │ │ ├── tiger │ │ │ │ │ │ │ ├── classes.tig │ │ │ │ │ │ │ ├── control-flow.tig │ │ │ │ │ │ │ ├── functions.tig │ │ │ │ │ │ │ ├── groupings.tig │ │ │ │ │ │ │ └── values-and-expressions.tig │ │ │ │ │ │ ├── tiger_spec.lua │ │ │ │ │ │ ├── vue │ │ │ │ │ │ │ └── template_indent.vue │ │ │ │ │ │ ├── vue_spec.lua │ │ │ │ │ │ ├── wgsl │ │ │ │ │ │ │ └── basic.wgsl │ │ │ │ │ │ ├── wgsl_spec.lua │ │ │ │ │ │ ├── yaml │ │ │ │ │ │ │ ├── autoindent-mapping-pair.yaml │ │ │ │ │ │ │ └── indent-sequence-items.yaml │ │ │ │ │ │ ├── yaml_spec.lua │ │ │ │ │ │ ├── yang │ │ │ │ │ │ │ └── module.yang │ │ │ │ │ │ ├── yang_spec.lua │ │ │ │ │ │ ├── zig │ │ │ │ │ │ │ └── pr-3269.zig │ │ │ │ │ │ └── zig_spec.lua │ │ │ │ │ │ ├── query │ │ │ │ │ │ ├── highlights │ │ │ │ │ │ │ ├── bash │ │ │ │ │ │ │ │ └── double-parens.sh │ │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ │ └── enums-as-constants.c │ │ │ │ │ │ │ ├── capnp │ │ │ │ │ │ │ │ └── test.capnp │ │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ │ ├── concepts.cpp │ │ │ │ │ │ │ │ ├── enums-as-constants.cpp │ │ │ │ │ │ │ │ ├── static-namespace-functions.cpp │ │ │ │ │ │ │ │ └── test.cpp │ │ │ │ │ │ │ ├── ecma │ │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ │ └── test.ts │ │ │ │ │ │ │ ├── fusion │ │ │ │ │ │ │ │ ├── afx.fusion │ │ │ │ │ │ │ │ ├── basic.fusion │ │ │ │ │ │ │ │ └── expressions.fusion │ │ │ │ │ │ │ ├── gitattributes │ │ │ │ │ │ │ │ └── test.gitattributes │ │ │ │ │ │ │ ├── gleam │ │ │ │ │ │ │ │ ├── assert.gleam │ │ │ │ │ │ │ │ ├── function.gleam │ │ │ │ │ │ │ │ ├── import.gleam │ │ │ │ │ │ │ │ ├── pipe.gleam │ │ │ │ │ │ │ │ ├── todo.gleam │ │ │ │ │ │ │ │ ├── try.gleam │ │ │ │ │ │ │ │ └── type.gleam │ │ │ │ │ │ │ ├── hack │ │ │ │ │ │ │ │ ├── as-foreach.hack │ │ │ │ │ │ │ │ ├── async-functions.hack │ │ │ │ │ │ │ │ ├── attribute-type.hack │ │ │ │ │ │ │ │ ├── generics.hack │ │ │ │ │ │ │ │ ├── heredoc-dollar.hack │ │ │ │ │ │ │ │ ├── shapes.hack │ │ │ │ │ │ │ │ ├── use.hack │ │ │ │ │ │ │ │ ├── using.hack │ │ │ │ │ │ │ │ └── xhp.hack │ │ │ │ │ │ │ ├── hocon │ │ │ │ │ │ │ │ └── test.conf │ │ │ │ │ │ │ ├── julia │ │ │ │ │ │ │ │ └── test.jl │ │ │ │ │ │ │ ├── lua │ │ │ │ │ │ │ │ └── test.lua │ │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ │ └── test.md │ │ │ │ │ │ │ ├── pascal │ │ │ │ │ │ │ │ └── test.pas │ │ │ │ │ │ │ ├── prisma │ │ │ │ │ │ │ │ └── test.prisma │ │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ │ ├── future_import.py │ │ │ │ │ │ │ │ ├── pattern_matching.py │ │ │ │ │ │ │ │ ├── raise_from.py │ │ │ │ │ │ │ │ └── yield_from.py │ │ │ │ │ │ │ ├── r │ │ │ │ │ │ │ │ └── test.r │ │ │ │ │ │ │ ├── rust │ │ │ │ │ │ │ │ ├── for.rs │ │ │ │ │ │ │ │ └── super-crate-imports.rs │ │ │ │ │ │ │ ├── smali │ │ │ │ │ │ │ │ └── baksmali_test_class.smali │ │ │ │ │ │ │ ├── solidity │ │ │ │ │ │ │ │ └── test.sol │ │ │ │ │ │ │ ├── t32 │ │ │ │ │ │ │ │ ├── comments.cmm │ │ │ │ │ │ │ │ ├── keywords.cmm │ │ │ │ │ │ │ │ ├── literals.cmm │ │ │ │ │ │ │ │ └── var.cmm │ │ │ │ │ │ │ ├── tiger │ │ │ │ │ │ │ │ ├── built-ins.tig │ │ │ │ │ │ │ │ ├── comment.tig │ │ │ │ │ │ │ │ ├── functions.tig │ │ │ │ │ │ │ │ ├── identifiers.tig │ │ │ │ │ │ │ │ ├── imports.tig │ │ │ │ │ │ │ │ ├── keywords.tig │ │ │ │ │ │ │ │ ├── literals.tig │ │ │ │ │ │ │ │ ├── meta-variables.tig │ │ │ │ │ │ │ │ ├── object-oriented.tig │ │ │ │ │ │ │ │ └── operators.tig │ │ │ │ │ │ │ ├── typescript │ │ │ │ │ │ │ │ └── as.ts │ │ │ │ │ │ │ └── xhp-intro.hack │ │ │ │ │ │ ├── highlights_spec.lua │ │ │ │ │ │ ├── injection_spec.lua │ │ │ │ │ │ └── injections │ │ │ │ │ │ │ ├── cuda │ │ │ │ │ │ │ └── macro-self-injection.cu │ │ │ │ │ │ │ ├── ecma │ │ │ │ │ │ │ └── ecma-test-injections.js │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── test-html-injections.html │ │ │ │ │ │ │ ├── svelte │ │ │ │ │ │ │ └── test-svelte-injections.svelte │ │ │ │ │ │ │ ├── vue │ │ │ │ │ │ │ ├── negative-assertions.vue │ │ │ │ │ │ │ └── test-vue-injections.vue │ │ │ │ │ │ │ └── yaml │ │ │ │ │ │ │ └── bash-on-github-actions.yml │ │ │ │ │ │ └── unit │ │ │ │ │ │ └── ts_utils_spec.lua │ │ │ │ ├── sentiment.nvim │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .github │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── cd.yml │ │ │ │ │ │ │ └── ci.yml │ │ │ │ │ ├── .luarc.json │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cliff.toml │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── sentiment.txt │ │ │ │ │ │ └── tags │ │ │ │ │ └── lua │ │ │ │ │ │ ├── sentiment.lua │ │ │ │ │ │ └── sentiment │ │ │ │ │ │ ├── Autocmd.lua │ │ │ │ │ │ ├── autocmds.lua │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── default.lua │ │ │ │ │ │ └── manager.lua │ │ │ │ │ │ ├── types.lua │ │ │ │ │ │ ├── ui.lua │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── Pair.lua │ │ │ │ │ │ └── Portion.lua │ │ │ │ │ │ └── utils.lua │ │ │ │ ├── staline.nvim │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── lua │ │ │ │ │ │ ├── stabline.lua │ │ │ │ │ │ ├── staline.lua │ │ │ │ │ │ └── staline │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ └── utils.lua │ │ │ │ └── telescope.nvim │ │ │ │ │ ├── .github │ │ │ │ │ ├── FUNDING.yml │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ ├── bug_report.yml │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ └── feature_request.md │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── ci.yml │ │ │ │ │ │ ├── docgen.yml │ │ │ │ │ │ ├── lint.yml │ │ │ │ │ │ └── release.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .luacheckrc │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── autoload │ │ │ │ │ └── health │ │ │ │ │ │ └── telescope.vim │ │ │ │ │ ├── data │ │ │ │ │ └── memes │ │ │ │ │ │ └── planets │ │ │ │ │ │ ├── earth │ │ │ │ │ │ ├── jupiter │ │ │ │ │ │ ├── mars │ │ │ │ │ │ ├── mercury │ │ │ │ │ │ ├── moon │ │ │ │ │ │ ├── neptune │ │ │ │ │ │ ├── pluto │ │ │ │ │ │ ├── saturn │ │ │ │ │ │ ├── uranus │ │ │ │ │ │ └── venus │ │ │ │ │ ├── developers.md │ │ │ │ │ ├── doc │ │ │ │ │ ├── secret.txt │ │ │ │ │ ├── telescope.txt │ │ │ │ │ └── telescope_changelog.txt │ │ │ │ │ ├── ftplugin │ │ │ │ │ ├── TelescopePrompt.lua │ │ │ │ │ └── TelescopeResults.lua │ │ │ │ │ ├── lua │ │ │ │ │ ├── telescope │ │ │ │ │ │ ├── _.lua │ │ │ │ │ │ ├── _extensions │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── generate.lua │ │ │ │ │ │ │ ├── history.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── layout.lua │ │ │ │ │ │ │ ├── mt.lua │ │ │ │ │ │ │ ├── set.lua │ │ │ │ │ │ │ ├── state.lua │ │ │ │ │ │ │ └── utils.lua │ │ │ │ │ │ ├── algos │ │ │ │ │ │ │ ├── fzy.lua │ │ │ │ │ │ │ ├── linked_list.lua │ │ │ │ │ │ │ └── string_distance.lua │ │ │ │ │ │ ├── builtin │ │ │ │ │ │ │ ├── __diagnostics.lua │ │ │ │ │ │ │ ├── __files.lua │ │ │ │ │ │ │ ├── __git.lua │ │ │ │ │ │ │ ├── __internal.lua │ │ │ │ │ │ │ ├── __lsp.lua │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ │ ├── command.lua │ │ │ │ │ │ ├── config.lua │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── resolve.lua │ │ │ │ │ │ ├── debounce.lua │ │ │ │ │ │ ├── deprecated.lua │ │ │ │ │ │ ├── entry_manager.lua │ │ │ │ │ │ ├── finders.lua │ │ │ │ │ │ ├── finders │ │ │ │ │ │ │ ├── async_job_finder.lua │ │ │ │ │ │ │ ├── async_oneshot_finder.lua │ │ │ │ │ │ │ └── async_static_finder.lua │ │ │ │ │ │ ├── from_entry.lua │ │ │ │ │ │ ├── health.lua │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ ├── log.lua │ │ │ │ │ │ ├── make_entry.lua │ │ │ │ │ │ ├── mappings.lua │ │ │ │ │ │ ├── pickers.lua │ │ │ │ │ │ ├── pickers │ │ │ │ │ │ │ ├── entry_display.lua │ │ │ │ │ │ │ ├── highlights.lua │ │ │ │ │ │ │ ├── layout_strategies.lua │ │ │ │ │ │ │ ├── multi.lua │ │ │ │ │ │ │ ├── scroller.lua │ │ │ │ │ │ │ └── window.lua │ │ │ │ │ │ ├── previewers │ │ │ │ │ │ │ ├── buffer_previewer.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── previewer.lua │ │ │ │ │ │ │ ├── term_previewer.lua │ │ │ │ │ │ │ └── utils.lua │ │ │ │ │ │ ├── sorters.lua │ │ │ │ │ │ ├── state.lua │ │ │ │ │ │ ├── testharness │ │ │ │ │ │ │ ├── helpers.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ └── runner.lua │ │ │ │ │ │ ├── themes.lua │ │ │ │ │ │ └── utils.lua │ │ │ │ │ └── tests │ │ │ │ │ │ ├── automated │ │ │ │ │ │ ├── action_spec.lua │ │ │ │ │ │ ├── command_spec.lua │ │ │ │ │ │ ├── entry_display_spec.lua │ │ │ │ │ │ ├── entry_manager_spec.lua │ │ │ │ │ │ ├── layout_strategies_spec.lua │ │ │ │ │ │ ├── linked_list_spec.lua │ │ │ │ │ │ ├── pickers │ │ │ │ │ │ │ └── find_files_spec.lua │ │ │ │ │ │ ├── resolver_spec.lua │ │ │ │ │ │ ├── scroller_spec.lua │ │ │ │ │ │ └── telescope_spec.lua │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── find_files │ │ │ │ │ │ │ ├── file_a.txt │ │ │ │ │ │ │ └── file_abc.txt │ │ │ │ │ │ ├── helpers.lua │ │ │ │ │ │ └── pickers │ │ │ │ │ │ ├── find_files__readme.lua │ │ │ │ │ │ └── find_files__scrolling_descending_cycle.lua │ │ │ │ │ ├── plugin │ │ │ │ │ └── telescope.lua │ │ │ │ │ ├── scripts │ │ │ │ │ ├── gendocs.lua │ │ │ │ │ └── minimal_init.vim │ │ │ │ │ └── telescope.nvim-scm-1.rockspec │ │ │ │ ├── neovide-settings.json │ │ │ │ └── telescope_history │ │ └── wallpapers │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 100.png │ │ │ ├── 101.png │ │ │ ├── 102.png │ │ │ ├── 103.png │ │ │ ├── 104.png │ │ │ ├── 105.png │ │ │ ├── 106.png │ │ │ ├── 107.png │ │ │ ├── 108.png │ │ │ ├── 109.png │ │ │ ├── 11.png │ │ │ ├── 110.png │ │ │ ├── 111.png │ │ │ ├── 112.png │ │ │ ├── 113.png │ │ │ ├── 114.png │ │ │ ├── 115.png │ │ │ ├── 116.png │ │ │ ├── 117.png │ │ │ ├── 118.png │ │ │ ├── 119.png │ │ │ ├── 12.png │ │ │ ├── 120.png │ │ │ ├── 121.png │ │ │ ├── 122.png │ │ │ ├── 123.png │ │ │ ├── 124.png │ │ │ ├── 125.png │ │ │ ├── 126.png │ │ │ ├── 127.png │ │ │ ├── 128.png │ │ │ ├── 129.png │ │ │ ├── 13.png │ │ │ ├── 130.png │ │ │ ├── 131.png │ │ │ ├── 132.png │ │ │ ├── 133.png │ │ │ ├── 134.png │ │ │ ├── 135.png │ │ │ ├── 136.png │ │ │ ├── 137.png │ │ │ ├── 138.png │ │ │ ├── 139.png │ │ │ ├── 14.png │ │ │ ├── 140.png │ │ │ ├── 141.png │ │ │ ├── 142.png │ │ │ ├── 143.png │ │ │ ├── 144.png │ │ │ ├── 145.png │ │ │ ├── 146.png │ │ │ ├── 147.png │ │ │ ├── 148.png │ │ │ ├── 149.png │ │ │ ├── 15.png │ │ │ ├── 150.png │ │ │ ├── 151.png │ │ │ ├── 152.png │ │ │ ├── 153.png │ │ │ ├── 154.png │ │ │ ├── 155.png │ │ │ ├── 156.png │ │ │ ├── 157.png │ │ │ ├── 158.png │ │ │ ├── 159.png │ │ │ ├── 16.png │ │ │ ├── 160.png │ │ │ ├── 161.png │ │ │ ├── 162.png │ │ │ ├── 163.png │ │ │ ├── 164.png │ │ │ ├── 165.png │ │ │ ├── 166.png │ │ │ ├── 167.png │ │ │ ├── 168.png │ │ │ ├── 169.png │ │ │ ├── 17.png │ │ │ ├── 170.png │ │ │ ├── 171.png │ │ │ ├── 172.png │ │ │ ├── 173.png │ │ │ ├── 174.png │ │ │ ├── 175.png │ │ │ ├── 176.png │ │ │ ├── 177.png │ │ │ ├── 178.png │ │ │ ├── 179.png │ │ │ ├── 18.png │ │ │ ├── 180.png │ │ │ ├── 181.png │ │ │ ├── 182.png │ │ │ ├── 183.png │ │ │ ├── 184.png │ │ │ ├── 185.png │ │ │ ├── 186.png │ │ │ ├── 187.png │ │ │ ├── 188.png │ │ │ ├── 189.png │ │ │ ├── 19.png │ │ │ ├── 190.png │ │ │ ├── 191.png │ │ │ ├── 192.png │ │ │ ├── 193.png │ │ │ ├── 194.png │ │ │ ├── 195.png │ │ │ ├── 196.png │ │ │ ├── 197.png │ │ │ ├── 198.png │ │ │ ├── 199.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 200.png │ │ │ ├── 201.png │ │ │ ├── 202.png │ │ │ ├── 203.png │ │ │ ├── 204.png │ │ │ ├── 205.png │ │ │ ├── 206.png │ │ │ ├── 207.png │ │ │ ├── 208.png │ │ │ ├── 209.png │ │ │ ├── 21.png │ │ │ ├── 210.png │ │ │ ├── 211.png │ │ │ ├── 212.png │ │ │ ├── 213.png │ │ │ ├── 214.png │ │ │ ├── 215.png │ │ │ ├── 216.png │ │ │ ├── 217.png │ │ │ ├── 218.png │ │ │ ├── 219.png │ │ │ ├── 22.png │ │ │ ├── 220.png │ │ │ ├── 221.png │ │ │ ├── 222.png │ │ │ ├── 223.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 52.png │ │ │ ├── 53.png │ │ │ ├── 54.png │ │ │ ├── 55.png │ │ │ ├── 56.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 59.png │ │ │ ├── 6.png │ │ │ ├── 60.png │ │ │ ├── 61.png │ │ │ ├── 62.png │ │ │ ├── 63.png │ │ │ ├── 64.png │ │ │ ├── 65.png │ │ │ ├── 66.png │ │ │ ├── 67.png │ │ │ ├── 68.png │ │ │ ├── 69.png │ │ │ ├── 7.png │ │ │ ├── 70.png │ │ │ ├── 71.png │ │ │ ├── 72.png │ │ │ ├── 73.png │ │ │ ├── 74.png │ │ │ ├── 75.png │ │ │ ├── 76.png │ │ │ ├── 77.png │ │ │ ├── 78.png │ │ │ ├── 79.png │ │ │ ├── 8.png │ │ │ ├── 80.png │ │ │ ├── 81.png │ │ │ ├── 82.png │ │ │ ├── 83.png │ │ │ ├── 84.png │ │ │ ├── 85.png │ │ │ ├── 86.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ ├── 89.png │ │ │ ├── 9.png │ │ │ ├── 90.png │ │ │ ├── 91.png │ │ │ ├── 92.png │ │ │ ├── 93.png │ │ │ ├── 94.png │ │ │ ├── 95.png │ │ │ ├── 96.png │ │ │ ├── 97.png │ │ │ ├── 98.png │ │ │ └── 99.png │ ├── .xprofile │ ├── .zprofile │ ├── customize_chroot.sh │ └── music │ │ ├── Aaj-sajeya-ae-ve.opus │ │ ├── Tum-mile-slowed.opus │ │ └── apna-banale.opus │ └── usr │ ├── lib │ └── sysusers.d │ │ └── live-metis.conf │ └── share │ └── grub │ ├── cfg │ ├── defaults.cfg │ ├── grub.cfg │ ├── kernels.cfg │ ├── loopback.cfg │ └── variable.cfg │ ├── locales │ ├── C_ │ ├── be_BY │ ├── bg_BG │ ├── bs_BA │ ├── cs_CZ │ ├── da_DK │ ├── de_AT │ ├── de_BE │ ├── de_CH │ ├── de_DE │ ├── de_LI │ ├── de_LU │ ├── el_CY │ ├── el_GR │ ├── en_AG │ ├── en_AU │ ├── en_BW │ ├── en_CA │ ├── en_DK │ ├── en_HK │ ├── en_IE │ ├── en_IN │ ├── en_NG │ ├── en_NZ │ ├── en_PH │ ├── en_SG │ ├── en_UK │ ├── en_US │ ├── en_ZA │ ├── en_ZW │ ├── es_AR │ ├── es_BO │ ├── es_CL │ ├── es_CO │ ├── es_CR │ ├── es_DO │ ├── es_EC │ ├── es_ES │ ├── es_GT │ ├── es_HN │ ├── es_MX │ ├── es_NI │ ├── es_PA │ ├── es_PE │ ├── es_PR │ ├── es_PY │ ├── es_SV │ ├── es_US │ ├── es_UY │ ├── es_VE │ ├── et_EE │ ├── fi_FI │ ├── fr_BE │ ├── fr_CA │ ├── fr_CH │ ├── fr_FR │ ├── fr_LU │ ├── fr_NC │ ├── ga_IE │ ├── he_IL │ ├── hr_HR │ ├── hu_HU │ ├── is_IS │ ├── it_CH │ ├── it_IT │ ├── ja_JP │ ├── keyboards │ ├── ko_KR │ ├── nb_NO │ ├── nl_AW │ ├── nl_BE │ ├── nl_NL │ ├── nn_NO │ ├── pl_PL │ ├── pt_BR │ ├── pt_PT │ ├── ro_RO │ ├── ru_RU │ ├── ru_UA │ ├── se_FI │ ├── se_NO │ ├── se_SE │ ├── sk_SK │ ├── sl_SI │ ├── sr_RS │ ├── sv_FI │ ├── sv_SE │ ├── tr_CY │ ├── tr_TR │ ├── uk_UA │ ├── zh_CN │ ├── zh_HK │ ├── zh_SG │ └── zh_TW │ ├── themes │ ├── metis-mocha │ │ ├── background.png │ │ ├── font.pf2 │ │ ├── icons │ │ │ ├── 4MLinux.png │ │ │ ├── AlpineLinux.png │ │ │ ├── Manjaro.i686.png │ │ │ ├── Manjaro.x86_64.png │ │ │ ├── SystemRescueCD.png │ │ │ ├── android.png │ │ │ ├── anonymous.png │ │ │ ├── antergos.png │ │ │ ├── arch.png │ │ │ ├── archlinux.png │ │ │ ├── arcolinux.png │ │ │ ├── artix.png │ │ │ ├── cancel.png │ │ │ ├── chakra.png │ │ │ ├── debian.png │ │ │ ├── deepin.png │ │ │ ├── devuan.png │ │ │ ├── driver.png │ │ │ ├── edit.png │ │ │ ├── efi.png │ │ │ ├── elementary.png │ │ │ ├── endeavouros.png │ │ │ ├── fedora.png │ │ │ ├── find.efi.png │ │ │ ├── find.none.png │ │ │ ├── freebsd.png │ │ │ ├── gentoo.png │ │ │ ├── gnu-linux.png │ │ │ ├── gpart.png │ │ │ ├── haiku.png │ │ │ ├── help.png │ │ │ ├── kali.png │ │ │ ├── kaos.png │ │ │ ├── kbd.png │ │ │ ├── kernel.png │ │ │ ├── korora.png │ │ │ ├── kubuntu.png │ │ │ ├── lang.png │ │ │ ├── lfs.png │ │ │ ├── linux.png │ │ │ ├── linuxmint.png │ │ │ ├── lubuntu.png │ │ │ ├── macosx.png │ │ │ ├── mageia.png │ │ │ ├── manjaro.png │ │ │ ├── manjarolinux.png │ │ │ ├── memtest.png │ │ │ ├── mx-linux.png │ │ │ ├── neon.png │ │ │ ├── nixos.png │ │ │ ├── opensuse.png │ │ │ ├── parrot.png │ │ │ ├── pop-os.png │ │ │ ├── pop.png │ │ │ ├── recovery.png │ │ │ ├── regolith.png │ │ │ ├── restart.png │ │ │ ├── shutdown.png │ │ │ ├── siduction.png │ │ │ ├── solus.png │ │ │ ├── steamos.png │ │ │ ├── submenu.png │ │ │ ├── type.png │ │ │ ├── tz.png │ │ │ ├── ubuntu.png │ │ │ ├── unknown.png │ │ │ ├── unset.png │ │ │ ├── void.png │ │ │ ├── windows.png │ │ │ ├── windows11.png │ │ │ ├── xubuntu.png │ │ │ └── zorin.png │ │ ├── logo.png │ │ ├── select_c.png │ │ ├── select_e.png │ │ ├── select_w.png │ │ └── theme.txt │ └── metis │ │ ├── background.png │ │ ├── highlight_c.png │ │ ├── highlight_e.png │ │ ├── highlight_w.png │ │ ├── icons │ │ ├── cancel.png │ │ ├── edit.png │ │ ├── efi.png │ │ ├── find.efi.png │ │ ├── find.none.png │ │ ├── help.png │ │ ├── kbd.png │ │ ├── lang.png │ │ ├── memtest.png │ │ ├── metis.i686.png │ │ ├── metis.x86_64.png │ │ ├── netinstall.png │ │ ├── type.png │ │ ├── tz.png │ │ └── unset.png │ │ ├── logo.png │ │ ├── menu_c.png │ │ ├── menu_e.png │ │ ├── slider_c.png │ │ ├── slider_n.png │ │ ├── slider_s.png │ │ ├── theme.txt │ │ ├── u_vga16_16.pf2 │ │ └── userpass.png │ └── tz │ ├── Africa │ ├── America │ ├── Asia │ ├── Atlantic │ ├── Australia │ ├── Etc │ ├── Europe │ └── Pacific └── config ├── metis-mirrorlist-andromeda ├── metis-mirrorlist-cosmic ├── metis-mirrorlist-recon ├── mirrorlist ├── pacman-default.conf ├── pacman.conf └── rankmirrors /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/README.md -------------------------------------------------------------------------------- /base/Packages-Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/Packages-Root -------------------------------------------------------------------------------- /base/profile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/profile.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/X11/xinit/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/X11/xinit/xinitrc -------------------------------------------------------------------------------- /base/root-overlay/etc/X11/xinit/xinitrc.d/80-dbus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/X11/xinit/xinitrc.d/80-dbus.sh -------------------------------------------------------------------------------- /base/root-overlay/etc/X11/xinit/xserverrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/X11/xinit/xserverrc -------------------------------------------------------------------------------- /base/root-overlay/etc/X11/xorg.conf.d/30-touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/X11/xorg.conf.d/30-touchpad.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/1-welcometo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/1-welcometo.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/1-welcometo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/1-welcometo.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/2-enjoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/2-enjoy.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/2-enjoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/2-enjoy.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/3-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/3-star.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/3-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/3-star.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/4-thanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/4-thanks.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/4-thanks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/4-thanks.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/branding.desc -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/about.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/donate.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/fourm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/fourm.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/go-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/go-down.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/go-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/go-next.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/go-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/go-previous.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/go-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/go-up.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/issues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/issues.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/language.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/notes.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/icons/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/icons/web.svg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/languages.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/languages.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/metis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/metis-logo.png -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/show.qml -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/squid.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 Teo Mrnjavac 2 | SPDX-License-Identifier: GPL-3.0-or-later 3 | -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/stylesheet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/stylesheet.qss -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/stylesheet.qss.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/stylesheet.qss.bak -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/branding/metis/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/branding/metis/wallpaper.jpg -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/bootloader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/bootloader.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/displaymanager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/displaymanager.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/finished.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/finished.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/initcpio.conf: -------------------------------------------------------------------------------- 1 | kernel: linux 2 | 3 | be_unsafe: false 4 | -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/machineid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/machineid.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/packages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/packages.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/partition.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/postcfg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/postcfg.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/shellprocess-before.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/shellprocess-before.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/shellprocess-final.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/shellprocess-final.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/umount.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/umount.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/unpackfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/unpackfs.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/users.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/modules/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/modules/welcome.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/calamares/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/calamares/settings.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/default/grub -------------------------------------------------------------------------------- /base/root-overlay/etc/doas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/doas.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/fstab -------------------------------------------------------------------------------- /base/root-overlay/etc/hostname: -------------------------------------------------------------------------------- 1 | metislive -------------------------------------------------------------------------------- /base/root-overlay/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/hosts -------------------------------------------------------------------------------- /base/root-overlay/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/issue -------------------------------------------------------------------------------- /base/root-overlay/etc/issue.live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/issue.live -------------------------------------------------------------------------------- /base/root-overlay/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/lsb-release -------------------------------------------------------------------------------- /base/root-overlay/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/os-release -------------------------------------------------------------------------------- /base/root-overlay/etc/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pacman.conf -------------------------------------------------------------------------------- /base/root-overlay/etc/pacman.d/metis-mirrorlist-andromeda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pacman.d/metis-mirrorlist-andromeda -------------------------------------------------------------------------------- /base/root-overlay/etc/pacman.d/metis-mirrorlist-cosmic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pacman.d/metis-mirrorlist-cosmic -------------------------------------------------------------------------------- /base/root-overlay/etc/pacman.d/metis-mirrorlist-recon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pacman.d/metis-mirrorlist-recon -------------------------------------------------------------------------------- /base/root-overlay/etc/pacman.d/mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pacman.d/mirrorlist -------------------------------------------------------------------------------- /base/root-overlay/etc/pam.d/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/pam.d/su -------------------------------------------------------------------------------- /base/root-overlay/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/passwd -------------------------------------------------------------------------------- /base/root-overlay/etc/polkit-1/rules.d/90-live.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/polkit-1/rules.d/90-live.rules -------------------------------------------------------------------------------- /base/root-overlay/etc/runit/sv/agetty-tty1/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/runit/sv/agetty-tty1/conf -------------------------------------------------------------------------------- /base/root-overlay/etc/sudoers.d/g_wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/sudoers.d/g_wheel -------------------------------------------------------------------------------- /base/root-overlay/etc/sudoers.d/u_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/etc/sudoers.d/u_root -------------------------------------------------------------------------------- /base/root-overlay/root/.cache/zsh/history: -------------------------------------------------------------------------------- 1 | Hey, pwnwriter was here :) 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dunst/dunstrc -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/autumn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/autumn -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/blosms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/blosms -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/catppuccin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/catppuccin -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/delight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/delight -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/harmony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/harmony -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/ocean-breeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/ocean-breeze -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/onedark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/onedark -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/serenade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/serenade -------------------------------------------------------------------------------- /base/root-overlay/root/.config/dwm/bar_themes/vintage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/dwm/bar_themes/vintage -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/eww.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/eww.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scripts/audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scripts/audio -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scripts/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scripts/fetch -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scripts/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scripts/system -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/focal/audioSlider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/focal/audioSlider.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/focal/focal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/focal/focal.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/footer/backlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/footer/backlight.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/footer/brightness.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/footer/brightness.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/footer/btns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/footer/btns.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/header/fetch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/header/fetch.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/header/statusBtns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/header/statusBtns.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/catppuccin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/catppuccin.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/dracula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/dracula.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/eveforest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/eveforest.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/everblush.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/everblush.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/everforest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/everforest.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/gruvchad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/gruvchad.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/nord.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/nord.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/onedark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/onedark.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/scss/themes/tokyonight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/scss/themes/tokyonight.scss -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/dashboard.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/dashboard.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/focal/audioSliders.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/focal/audioSliders.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/focal/init.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/focal/init.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/focal/widgets.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/focal/widgets.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/footer/btns.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/footer/btns.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/footer/init.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/footer/init.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/header/fetch.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/header/fetch.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/header/init.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/header/init.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/src/widgets.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/src/widgets.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/eww/var.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/eww/var.yuck -------------------------------------------------------------------------------- /base/root-overlay/root/.config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /base/root-overlay/root/.config/gtk-2.0/gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/gtk-2.0/gtkrc-2.0 -------------------------------------------------------------------------------- /base/root-overlay/root/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /base/root-overlay/root/.config/helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/helix/config.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.config/helix/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/helix/languages.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nsxiv/exec/key-handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nsxiv/exec/key-handler -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/COPYING -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/init.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/binder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/binder.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/filetype.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/filetype.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/icons.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/lazy.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/mappings.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/core/opts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/core/opts.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/autopairs.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/bufferline.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/catppuccin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/catppuccin.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/cmp.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/gitsigns.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/lspconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/lspconfig.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/mason.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/null.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/null.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/nvimtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/nvimtree.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/nvterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/nvterm.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/sentiment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/sentiment.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/staline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/staline.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /base/root-overlay/root/.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/picom/picom.conf -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/colorschemes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/colorschemes/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/colorschemes/default.py -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/colorschemes/zenburn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/colorschemes/zenburn.py -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/commands.py -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/rc.conf -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /base/root-overlay/root/.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/ranger/scope.sh -------------------------------------------------------------------------------- /base/root-overlay/root/.config/shell/aliasrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/shell/aliasrc -------------------------------------------------------------------------------- /base/root-overlay/root/.config/shell/bm-dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/shell/bm-dirs -------------------------------------------------------------------------------- /base/root-overlay/root/.config/shell/bm-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/shell/bm-files -------------------------------------------------------------------------------- /base/root-overlay/root/.config/shell/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/shell/inputrc -------------------------------------------------------------------------------- /base/root-overlay/root/.config/shell/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/shell/profile -------------------------------------------------------------------------------- /base/root-overlay/root/.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /base/root-overlay/root/.config/wget/wgetrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.config/x11/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/x11/xinitrc -------------------------------------------------------------------------------- /base/root-overlay/root/.config/x11/xprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/x11/xprofile -------------------------------------------------------------------------------- /base/root-overlay/root/.config/x11/xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/x11/xresources -------------------------------------------------------------------------------- /base/root-overlay/root/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/zathura/zathurarc -------------------------------------------------------------------------------- /base/root-overlay/root/.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.config/zsh/.zshrc -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/bookmarks -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/clp -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/colorbars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/colorbars -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/colorwheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/colorwheel -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/cov -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/dmenuwifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/dmenuwifi -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/doc2pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/doc2pdf -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/erg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/erg -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/f -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/gc -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/getlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/getlinks -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/ipcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/ipcfg -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/learn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/learn -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/mp3 -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/mtcell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/mtcell -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/mus -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/o -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/pash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/pash -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/pingg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/pingg -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/powermenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/powermenu -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/preview -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/pwnfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/pwnfetch -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/quick -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/r -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/remaps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/remaps -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/setbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/setbg -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/swpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/swpb -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/uf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/uf -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/wal -------------------------------------------------------------------------------- /base/root-overlay/root/.local/bin/webcam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/bin/webcam -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/bg -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/.netrwhist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/.netrwhist -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/SchemaStore.nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/SchemaStore.nvim/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/SchemaStore.nvim/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/SchemaStore.nvim/NOTICE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/bufferline.nvim/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: akinsho 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/bufferline.nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/bufferline.nvim/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/bufferline.nvim/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/bufferline.nvim/doc/tags -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | .vscode/ 3 | .DS_Store 4 | .repro 5 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/colors/catppuccin-frappe.vim: -------------------------------------------------------------------------------- 1 | lua require("catppuccin").load "frappe" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/colors/catppuccin-latte.vim: -------------------------------------------------------------------------------- 1 | lua require("catppuccin").load "latte" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/colors/catppuccin-macchiato.vim: -------------------------------------------------------------------------------- 1 | lua require("catppuccin").load "macchiato" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/colors/catppuccin-mocha.vim: -------------------------------------------------------------------------------- 1 | lua require("catppuccin").load "mocha" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/colors/catppuccin.vim: -------------------------------------------------------------------------------- 1 | lua require("catppuccin").load() 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/go.mod -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/barbecue/theme/catppuccin-frappe.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.barbecue" "frappe" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/barbecue/theme/catppuccin-latte.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.barbecue" "latte" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/barbecue/theme/catppuccin-mocha.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.barbecue" "mocha" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/barbecue/theme/catppuccin.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.barbecue"() 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/lualine/themes/catppuccin-frappe.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.lualine" "frappe" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/lualine/themes/catppuccin-latte.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.lualine" "latte" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/lualine/themes/catppuccin-mocha.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.lualine" "mocha" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/lua/lualine/themes/catppuccin.lua: -------------------------------------------------------------------------------- 1 | return require "catppuccin.utils.lualine"() 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/tests/minimal_init.vim: -------------------------------------------------------------------------------- 1 | set rtp+=. 2 | 3 | runtime! plugin/plenary.vim 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/vim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/catppuccin.nvim/vim.yml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [lewis6991] 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | 3 | neovim 4 | 5 | scratch/dummy_ignored.txt 6 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/gitsigns.nvim/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/.cbfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/.cbfmt.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/.editorconfig -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/.gitignore: -------------------------------------------------------------------------------- 1 | .luarc.json 2 | /dependencies 3 | /tests/fixtures/mason 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/CHANGELOG.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/PACKAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/PACKAGES.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/SECURITY.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/doc/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/doc/mason.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/doc/mason.txt -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/lua/mason-registry/index/init.lua: -------------------------------------------------------------------------------- 1 | return {} 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/selene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/selene.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/stylua.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/vim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/mason.nvim/vim.yml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.cbfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.cbfmt.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jose-elias-alvarez] 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.gitignore: -------------------------------------------------------------------------------- 1 | .tests/ 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.prettierignore: -------------------------------------------------------------------------------- 1 | doc/BUILTINS.md 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/.prettierrc -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/doc/MAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/doc/MAIN.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/selene.toml: -------------------------------------------------------------------------------- 1 | std="vim" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/stylua.toml: -------------------------------------------------------------------------------- 1 | indent_type = "Spaces" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/files/cat: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Hello!" 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/files/test-file.js: -------------------------------------------------------------------------------- 1 | import {User} from "./test-types" 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/files/test-file.lua: -------------------------------------------------------------------------------- 1 | print("I am a test file!") 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/files/test-file.md: -------------------------------------------------------------------------------- 1 | I am a really good file! 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/files/test-file.txt: -------------------------------------------------------------------------------- 1 | intentionally left blank 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/test/scripts/sleep-and-echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sleep 0.25 4 | echo "done" 5 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/vim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/null-ls.nvim/vim.toml -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | 3 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-autopairs/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/.codespellignorewords: -------------------------------------------------------------------------------- 1 | als 2 | edn 3 | esy 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/README.md -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/flake.nix -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/test/test_dir/a/a_marker.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-lspconfig/test/test_dir/root_marker.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/.styluaignore: -------------------------------------------------------------------------------- 1 | tests/indent/lua/ 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/LICENSE -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metis-os/Releases/HEAD/base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/Makefile -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/parser-info/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/parser/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/agda/folds.scm: -------------------------------------------------------------------------------- 1 | [ 2 | (record) 3 | (module) 4 | ] @fold 5 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/arduino/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/arduino/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/arduino/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/astro/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: html 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/astro/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: html 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/astro/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: html 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/bibtex/folds.scm: -------------------------------------------------------------------------------- 1 | [ 2 | (entry) 3 | ] @fold 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/clojure/folds.scm: -------------------------------------------------------------------------------- 1 | (source (list_lit) @fold) 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/commonlisp/folds.scm: -------------------------------------------------------------------------------- 1 | (source (list_lit) @fold) 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/css/folds.scm: -------------------------------------------------------------------------------- 1 | [ 2 | (rule_set) 3 | ] @fold 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/cuda/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/cuda/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/cuda/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/d/folds.scm: -------------------------------------------------------------------------------- 1 | (block_statement) @fold 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/devicetree/folds.scm: -------------------------------------------------------------------------------- 1 | (node) @fold 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/elsa/folds.scm: -------------------------------------------------------------------------------- 1 | (reduction) @fold 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/git_config/folds.scm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/glsl/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: c 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/glsl/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: c 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/glsl/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: c 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/godot_resource/folds.scm: -------------------------------------------------------------------------------- 1 | [ 2 | (section) 3 | ] @fold 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/godot_resource/locals.scm: -------------------------------------------------------------------------------- 1 | [ 2 | (section) 3 | ] @scope 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hjson/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: json 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hjson/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: json 2 | 3 | (comment) @indent.ignore 4 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hjson/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: json 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hlsl/folds.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hlsl/indents.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/hlsl/locals.scm: -------------------------------------------------------------------------------- 1 | ; inherits: cpp 2 | -------------------------------------------------------------------------------- /base/root-overlay/root/.local/share/nvim/lazy/nvim-treesitter/queries/html/highlights.scm: -------------------------------------------------------------------------------- 1 | ; inherits: html_tags 2 | 3 | (doctype) @constant 4 | 5 | "