mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-06-06 00:56:59 +02:00
Add EditorConfig and standardize code formatting
Adds an EditorConfig file to maintain consistent coding styles across editors. Reformats code with consistent indentation using spaces instead of tabs. Makes minor color palette adjustments.
This commit is contained in:
parent
05b1a4b6d6
commit
90088255f9
8 changed files with 501 additions and 467 deletions
|
|
@ -2,7 +2,7 @@ local M = {}
|
|||
local PATH_SEP = vim.loop.os_uname().version:match("Windows") and "\\" or "/"
|
||||
|
||||
local get_compiled_path = function(theme)
|
||||
return table.concat({vim.fn.stdpath("state"), "kanso", theme .. "_compiled.lua"}, PATH_SEP)
|
||||
return table.concat({ vim.fn.stdpath("state"), "kanso", theme .. "_compiled.lua" }, PATH_SEP)
|
||||
end
|
||||
|
||||
---@return string theme
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue