mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
modules/performance: update runtimepath pathsToLink
This commit is contained in:
parent
f0ec773869
commit
6418cf3414
1 changed files with 24 additions and 17 deletions
|
@ -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"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue