mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 19:50:38 +00:00
The none-ls plugin is added to the list of plugins in the absolute configuration. The plugin is configured to load the "absolute.after.none-ls" module. This configuration allows for the integration of the none-ls plugin into the absolute plugin system.
8 lines
116 B
Lua
8 lines
116 B
Lua
return {
|
|
"nvimtools/none-ls.nvim",
|
|
config = function()
|
|
require("absolute.after.none-ls")
|
|
end
|
|
|
|
}
|