11 lines
595 B
Lua
11 lines
595 B
Lua
---@module "data.ft"
|
|
--- This module defines the filetype tables for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Filetypes │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
local M = {}
|
|
|
|
M.helpview = 'help'
|
|
|
|
return M
|