modules/performance: update runtimepath pathsToLink

This commit is contained in:
Matt Sturgeon 2025-04-26 13:56:01 +01:00
parent f0ec773869
commit 6418cf3414
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -75,26 +75,33 @@ in
# Set option value with default priority so that values are appended by default # Set option value with default priority so that values are appended by default
combinePlugins.pathsToLink = [ combinePlugins.pathsToLink = [
# :h rtp # :h rtp
"/autoload" # TODO: "/filetype.lua" # filetypes (:h new-filetype)
"/colors" "/autoload" # automatically loaded scripts (:h autoload-functions)
"/compiler" "/colors" # color scheme files (:h :colorscheme)
"/doc" "/compiler" # compiler files (:h :compiler)
"/ftplugin" "/doc" # documentation (:h write-local-help)
"/indent" "/ftplugin" # filetype plugins (:h write-filetype-plugin)
"/keymap" "/indent" # indent scripts (:h indent-expression)
"/lang" "/keymap" # key mapping files (:h mbyte-keymap)
"/lua" "/lang" # menu translations (:h :menutrans)
"/pack" "/lsp" # LSP client configurations (:h lsp-config)
"/parser" "/lua" # Lua plugins (:h lua)
"/plugin" # TODO: "/menu.vim" # GUI menus (:h menu.vim)
"/queries" "/pack" # packages (:h :packadd)
"/rplugin" "/parser" # treesitter syntax parsers (:h treesitter)
"/spell" "/plugin" # plugin scripts (:h write-plugin)
"/syntax" "/queries" # treesitter queries (:h treesitter)
"/tutor" "/rplugin" # remote-plugin scripts (:h remote-plugin)
"/spell" # spell checking files (:h spell)
"/syntax" # syntax files (:h mysyntaxfile)
"/tutor" # tutorial files (:h :Tutor)
# after
"/after" "/after"
# ftdetect # ftdetect
"/ftdetect" "/ftdetect"
# plenary.nvim # plenary.nvim
"/data/plenary/filetypes" "/data/plenary/filetypes"
]; ];