mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-02 17:14:56 +02:00
Decoupling config from nvim (#1038)
This commit is contained in:
parent
acb6a7a2ce
commit
d02265175f
13 changed files with 63 additions and 39 deletions
|
@ -1,4 +1,4 @@
|
|||
CONFIG_PATH = vim.fn.stdpath "config"
|
||||
CONFIG_PATH = os.getenv "HOME" .. "/.local/share/lunarvim/lvim"
|
||||
DATA_PATH = vim.fn.stdpath "data"
|
||||
CACHE_PATH = vim.fn.stdpath "cache"
|
||||
TERMINAL = vim.fn.expand "$TERMINAL"
|
||||
|
@ -13,7 +13,7 @@ O = {
|
|||
transparent_window = false,
|
||||
format_on_save = true,
|
||||
lint_on_save = true,
|
||||
vsnip_dir = vim.fn.stdpath "config" .. "/snippets",
|
||||
vsnip_dir = os.getenv "HOME" .. "/.config/snippets",
|
||||
|
||||
default_options = {
|
||||
backup = false, -- creates a backup file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue