mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-04 12:00:29 +00:00
config: Seperate plugin and non-plugin configs
This commit is contained in:
parent
e08a460543
commit
3ee3b0368a
151
lua/chadrc.lua
151
lua/chadrc.lua
@ -2,6 +2,7 @@
|
||||
|
||||
local M = {}
|
||||
|
||||
-- non plugin ui configs, available without any plugins
|
||||
M.ui = {
|
||||
italic_comments = false,
|
||||
|
||||
@ -20,23 +21,22 @@ M.ui = {
|
||||
-- Enable this only if your terminal has the colorscheme set which nvchad uses
|
||||
-- For Ex : if you have onedark set in nvchad , set onedark's bg color on your terminal
|
||||
transparency = false,
|
||||
}
|
||||
|
||||
-- plugin related ui options
|
||||
plugin = {
|
||||
-- statusline related options
|
||||
statusline = {
|
||||
-- these are filetypes, not pattern matched
|
||||
-- if a filetype is present in shown, it will always show the statusline, irrespective of filetypes in hidden
|
||||
hidden = {},
|
||||
shown = {
|
||||
-- "terminal"
|
||||
},
|
||||
-- default, round , slant , block , arrow
|
||||
style = "default",
|
||||
},
|
||||
-- plugin related ui options
|
||||
M.ui.plugin = {
|
||||
-- statusline related options
|
||||
statusline = {
|
||||
-- these are filetypes, not pattern matched
|
||||
-- if a filetype is present in shown, it will always show the statusline, irrespective of filetypes in hidden
|
||||
hidden = {},
|
||||
shown = {},
|
||||
-- default, round , slant , block , arrow
|
||||
style = "default",
|
||||
},
|
||||
}
|
||||
|
||||
-- non plugin normal, available without any plugins
|
||||
M.options = {
|
||||
clipboard = "unnamedplus",
|
||||
cmdheight = 1,
|
||||
@ -60,13 +60,13 @@ M.options = {
|
||||
-- used for updater
|
||||
update_url = "https://github.com/NvChad/NvChad",
|
||||
update_branch = "main",
|
||||
}
|
||||
|
||||
-- these are plugin related options
|
||||
plugin = {
|
||||
autosave = false, -- autosave on changed text or insert mode leave
|
||||
-- timeout to be used for using escape with a key combination, see mappings.plugin.better_escape
|
||||
esc_insertmode_timeout = 300,
|
||||
},
|
||||
-- these are plugin related options
|
||||
M.options.plugin = {
|
||||
autosave = false, -- autosave on changed text or insert mode leave
|
||||
-- timeout to be used for using escape with a key combination, see mappings.plugin.better_escape
|
||||
esc_insertmode_timeout = 300,
|
||||
}
|
||||
|
||||
-- enable and disable plugins (false for disable)
|
||||
@ -91,7 +91,8 @@ M.plugin_status = {
|
||||
vim_matchup = true, -- % magic, match it but improved
|
||||
}
|
||||
|
||||
-- make sure you dont use same keys twice
|
||||
-- mappings -- don't use a single keymap twice --
|
||||
-- non plugin mappings
|
||||
M.mappings = {
|
||||
-- close current focused buffer
|
||||
close_buffer = "<leader>x",
|
||||
@ -131,62 +132,62 @@ M.mappings = {
|
||||
|
||||
-- update nvchad from nvchad, chadness 101
|
||||
update_nvchad = "<leader>uu",
|
||||
}
|
||||
|
||||
-- all plugins related mappings
|
||||
-- to get short info about a plugin, see the respective string in plugin_status, if not present, then info here
|
||||
plugin = {
|
||||
bufferline = {
|
||||
next_buffer = "<TAB>", -- next buffer
|
||||
prev_buffer = "<S-Tab>", -- previous buffer
|
||||
},
|
||||
chadsheet = {
|
||||
default_keys = "<leader>dk",
|
||||
user_keys = "<leader>uk",
|
||||
},
|
||||
comment = {
|
||||
toggle = "<leader>/", -- trigger comment on a single/selected lines/number prefix
|
||||
},
|
||||
dashboard = {
|
||||
bookmarks = "<leader>bm",
|
||||
new_file = "<leader>fn", -- basically create a new buffer
|
||||
open = "<leader>db", -- open dashboard
|
||||
session_load = "<leader>l", -- load a saved session
|
||||
session_save = "<leader>s", -- save a session
|
||||
},
|
||||
-- note: this is an edditional mapping to escape, escape key will still work
|
||||
better_escape = {
|
||||
esc_insertmode = { "jk" }, -- multiple mappings allowed
|
||||
},
|
||||
nvimtree = {
|
||||
toggle = "<C-n>", -- file manager
|
||||
},
|
||||
neoformat = {
|
||||
format = "<leader>fm",
|
||||
},
|
||||
telescope = {
|
||||
buffers = "<leader>fb",
|
||||
find_files = "<leader>ff",
|
||||
git_commits = "<leader>cm",
|
||||
git_status = "<leader>gt",
|
||||
help_tags = "<leader>fh",
|
||||
live_grep = "<leader>fw",
|
||||
oldfiles = "<leader>fo",
|
||||
themes = "<leader>th",
|
||||
},
|
||||
telescope_media = {
|
||||
media_files = "<leader>fp",
|
||||
},
|
||||
truezen = { -- distraction free modes mapping, hide statusline, tabline, line numbers
|
||||
ataraxis_mode = "<leader>zz", -- center
|
||||
focus_mode = "<leader>zf",
|
||||
minimalistic_mode = "<leader>zm", -- as it is
|
||||
},
|
||||
vim_fugitive = {
|
||||
diff_get_2 = "<leader>gh",
|
||||
diff_get_3 = "<leader>gl",
|
||||
git = "<leader>gs",
|
||||
git_blame = "<leader>gb",
|
||||
},
|
||||
-- all plugins related mappings
|
||||
-- to get short info about a plugin, see the respective string in plugin_status, if not present, then info here
|
||||
M.mappings.plugin = {
|
||||
bufferline = {
|
||||
next_buffer = "<TAB>", -- next buffer
|
||||
prev_buffer = "<S-Tab>", -- previous buffer
|
||||
},
|
||||
chadsheet = {
|
||||
default_keys = "<leader>dk",
|
||||
user_keys = "<leader>uk",
|
||||
},
|
||||
comment = {
|
||||
toggle = "<leader>/", -- trigger comment on a single/selected lines/number prefix
|
||||
},
|
||||
dashboard = {
|
||||
bookmarks = "<leader>bm",
|
||||
new_file = "<leader>fn", -- basically create a new buffer
|
||||
open = "<leader>db", -- open dashboard
|
||||
session_load = "<leader>l", -- load a saved session
|
||||
session_save = "<leader>s", -- save a session
|
||||
},
|
||||
-- note: this is an edditional mapping to escape, escape key will still work
|
||||
better_escape = {
|
||||
esc_insertmode = { "jk" }, -- multiple mappings allowed
|
||||
},
|
||||
nvimtree = {
|
||||
toggle = "<C-n>", -- file manager
|
||||
},
|
||||
neoformat = {
|
||||
format = "<leader>fm",
|
||||
},
|
||||
telescope = {
|
||||
buffers = "<leader>fb",
|
||||
find_files = "<leader>ff",
|
||||
git_commits = "<leader>cm",
|
||||
git_status = "<leader>gt",
|
||||
help_tags = "<leader>fh",
|
||||
live_grep = "<leader>fw",
|
||||
oldfiles = "<leader>fo",
|
||||
themes = "<leader>th",
|
||||
},
|
||||
telescope_media = {
|
||||
media_files = "<leader>fp",
|
||||
},
|
||||
truezen = { -- distraction free modes mapping, hide statusline, tabline, line numbers
|
||||
ataraxis_mode = "<leader>zz", -- center
|
||||
focus_mode = "<leader>zf",
|
||||
minimalistic_mode = "<leader>zm", -- as it is
|
||||
},
|
||||
vim_fugitive = {
|
||||
diff_get_2 = "<leader>gh",
|
||||
diff_get_3 = "<leader>gl",
|
||||
git = "<leader>gs",
|
||||
git_blame = "<leader>gb",
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
local M = {}
|
||||
|
||||
-- non plugin ui configs, available without any plugins
|
||||
M.ui = {
|
||||
italic_comments = false,
|
||||
|
||||
@ -20,25 +21,26 @@ M.ui = {
|
||||
-- Enable this only if your terminal has the colorscheme set which nvchad uses
|
||||
-- For Ex : if you have onedark set in nvchad , set onedark's bg color on your terminal
|
||||
transparency = false,
|
||||
}
|
||||
|
||||
-- plugin related ui options
|
||||
plugin = {
|
||||
-- statusline related options
|
||||
statusline = {
|
||||
-- these are filetypes, not pattern matched
|
||||
-- if a filetype is present in shown, it will always show the statusline, irrespective of filetypes in hidden
|
||||
hidden = {
|
||||
"NvimTree",
|
||||
"terminal",
|
||||
"dashboard",
|
||||
},
|
||||
shown = {},
|
||||
-- default, round , slant , block , arrow
|
||||
style = "default",
|
||||
-- plugin related ui options
|
||||
M.ui.plugin = {
|
||||
-- statusline related options
|
||||
statusline = {
|
||||
-- these are filetypes, not pattern matched
|
||||
-- if a filetype is present in shown, it will always show the statusline, irrespective of filetypes in hidden
|
||||
hidden = {
|
||||
"NvimTree",
|
||||
"terminal",
|
||||
"dashboard",
|
||||
},
|
||||
shown = {},
|
||||
-- default, round , slant , block , arrow
|
||||
style = "default",
|
||||
},
|
||||
}
|
||||
|
||||
-- non plugin normal, available without any plugins
|
||||
M.options = {
|
||||
clipboard = "unnamedplus",
|
||||
cmdheight = 1,
|
||||
@ -62,13 +64,13 @@ M.options = {
|
||||
-- used for updater
|
||||
update_url = "https://github.com/NvChad/NvChad",
|
||||
update_branch = "main",
|
||||
}
|
||||
|
||||
-- these are plugin related options
|
||||
plugin = {
|
||||
autosave = false, -- autosave on changed text or insert mode leave
|
||||
-- timeout to be used for using escape with a key combination, see mappings.plugin.better_escape
|
||||
esc_insertmode_timeout = 300,
|
||||
},
|
||||
-- these are plugin related options
|
||||
M.options.plugin = {
|
||||
autosave = false, -- autosave on changed text or insert mode leave
|
||||
-- timeout to be used for using escape with a key combination, see mappings.plugin.better_escape
|
||||
esc_insertmode_timeout = 300,
|
||||
}
|
||||
|
||||
-- enable and disable plugins (false for disable)
|
||||
@ -93,7 +95,8 @@ M.plugin_status = {
|
||||
vim_matchup = true, -- % magic, match it but improved
|
||||
}
|
||||
|
||||
-- make sure you dont use same keys twice
|
||||
-- mappings -- don't use a single keymap twice --
|
||||
-- non plugin mappings
|
||||
M.mappings = {
|
||||
-- close current focused buffer
|
||||
close_buffer = "<leader>x",
|
||||
@ -133,62 +136,62 @@ M.mappings = {
|
||||
|
||||
-- update nvchad from nvchad, chadness 101
|
||||
update_nvchad = "<leader>uu",
|
||||
}
|
||||
|
||||
-- all plugins related mappings
|
||||
-- to get short info about a plugin, see the respective string in plugin_status, if not present, then info here
|
||||
plugin = {
|
||||
bufferline = {
|
||||
next_buffer = "<TAB>", -- next buffer
|
||||
prev_buffer = "<S-Tab>", -- previous buffer
|
||||
},
|
||||
chadsheet = {
|
||||
default_keys = "<leader>dk",
|
||||
user_keys = "<leader>uk",
|
||||
},
|
||||
comment = {
|
||||
toggle = "<leader>/", -- trigger comment on a single/selected lines/number prefix
|
||||
},
|
||||
dashboard = {
|
||||
bookmarks = "<leader>bm",
|
||||
new_file = "<leader>fn", -- basically create a new buffer
|
||||
open = "<leader>db", -- open dashboard
|
||||
session_load = "<leader>l", -- load a saved session
|
||||
session_save = "<leader>s", -- save a session
|
||||
},
|
||||
-- note: this is an edditional mapping to escape, escape key will still work
|
||||
better_escape = {
|
||||
esc_insertmode = { "jk" }, -- multiple mappings allowed
|
||||
},
|
||||
nvimtree = {
|
||||
toggle = "<C-n>", -- file manager
|
||||
},
|
||||
neoformat = {
|
||||
format = "<leader>fm",
|
||||
},
|
||||
telescope = {
|
||||
buffers = "<leader>fb",
|
||||
find_files = "<leader>ff",
|
||||
git_commits = "<leader>cm",
|
||||
git_status = "<leader>gt",
|
||||
help_tags = "<leader>fh",
|
||||
live_grep = "<leader>fw",
|
||||
oldfiles = "<leader>fo",
|
||||
themes = "<leader>th",
|
||||
},
|
||||
telescope_media = {
|
||||
media_files = "<leader>fp",
|
||||
},
|
||||
truezen = { -- distraction free modes mapping, hide statusline, tabline, line numbers
|
||||
ataraxis_mode = "<leader>zz", -- center
|
||||
focus_mode = "<leader>zf",
|
||||
minimalistic_mode = "<leader>zm", -- as it is
|
||||
},
|
||||
vim_fugitive = {
|
||||
diff_get_2 = "<leader>gh",
|
||||
diff_get_3 = "<leader>gl",
|
||||
git = "<leader>gs",
|
||||
git_blame = "<leader>gb",
|
||||
},
|
||||
-- all plugins related mappings
|
||||
-- to get short info about a plugin, see the respective string in plugin_status, if not present, then info here
|
||||
M.mappings.plugin = {
|
||||
bufferline = {
|
||||
next_buffer = "<TAB>", -- next buffer
|
||||
prev_buffer = "<S-Tab>", -- previous buffer
|
||||
},
|
||||
chadsheet = {
|
||||
default_keys = "<leader>dk",
|
||||
user_keys = "<leader>uk",
|
||||
},
|
||||
comment = {
|
||||
toggle = "<leader>/", -- trigger comment on a single/selected lines/number prefix
|
||||
},
|
||||
dashboard = {
|
||||
bookmarks = "<leader>bm",
|
||||
new_file = "<leader>fn", -- basically create a new buffer
|
||||
open = "<leader>db", -- open dashboard
|
||||
session_load = "<leader>l", -- load a saved session
|
||||
session_save = "<leader>s", -- save a session
|
||||
},
|
||||
-- note: this is an edditional mapping to escape, escape key will still work
|
||||
better_escape = {
|
||||
esc_insertmode = { "jk" }, -- multiple mappings allowed
|
||||
},
|
||||
nvimtree = {
|
||||
toggle = "<C-n>", -- file manager
|
||||
},
|
||||
neoformat = {
|
||||
format = "<leader>fm",
|
||||
},
|
||||
telescope = {
|
||||
buffers = "<leader>fb",
|
||||
find_files = "<leader>ff",
|
||||
git_commits = "<leader>cm",
|
||||
git_status = "<leader>gt",
|
||||
help_tags = "<leader>fh",
|
||||
live_grep = "<leader>fw",
|
||||
oldfiles = "<leader>fo",
|
||||
themes = "<leader>th",
|
||||
},
|
||||
telescope_media = {
|
||||
media_files = "<leader>fp",
|
||||
},
|
||||
truezen = { -- distraction free modes mapping, hide statusline, tabline, line numbers
|
||||
ataraxis_mode = "<leader>zz", -- center
|
||||
focus_mode = "<leader>zf",
|
||||
minimalistic_mode = "<leader>zm", -- as it is
|
||||
},
|
||||
vim_fugitive = {
|
||||
diff_get_2 = "<leader>gh",
|
||||
diff_get_3 = "<leader>gl",
|
||||
git = "<leader>gs",
|
||||
git_blame = "<leader>gb",
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user