# editorconfig-textadept **Repository Path**: mirrors_editorconfig/editorconfig-textadept ## Basic Information - **Project Name**: editorconfig-textadept - **Description**: EditorConfig plugin for Textadept - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # EditorConfig Plugin for Textadept This is an [EditorConfig] plugin for [Textadept]. ## Installation 1. You'll need the [EditorConfig Lua Core]. It can be installed using [LuaRocks] with the following command: luarocks install editorconfig-core You may need to set `TA_LUA_CPATH` if using LuaRocks. This can be done for example by adding to your environment: export TA_LUA_CPATH=";;$(luarocks path --lr-cpath)" 2. Install the `editorconfig.lua` module to your Textadept `_USERHOME`. cd ~/.textadept mkdir -p modules/textadept/editing cp /path/to/editorconfig.lua modules/textadept/editing echo "require(\"textadept.editing.editorconfig\")" >> init.lua Check the [manual] for further information about module installation and how to configure Textadept. ## Supported Properties The Textadept EditorConfig plugin supports the following EditorConfig [properties]: * indent_style * indent_size * tab_width * end_of_line * charset * trim_trailing_whitespace * insert_final_newline [EditorConfig]: https://editorconfig.org [EditorConfig Lua Core]: https://github.com/editorconfig/editorconfig-core-lua [properties]: https://editorconfig.org/#supported-properties [LuaRocks]: https://luarocks.org/ [Textadept]: https://foicica.com/textadept [manual]: https://foicica.com/textadept/manual.html#Modules