216 lines
6.9 KiB
Lua
216 lines
6.9 KiB
Lua
-- IMPORTANT NOTE : This is default config, so dont change anything here.
|
|
-- use custom/chadrc.lua instead
|
|
|
|
local M = {}
|
|
M.options, M.ui, M.mappings, M.plugin = {}, {}, {}, {}
|
|
|
|
-- non plugin normal, available without any plugins
|
|
M.options = {
|
|
-- NeoVim/Vim options
|
|
clipboard = "unnamedplus",
|
|
cmdheight = 1,
|
|
ruler = false,
|
|
hidden = true,
|
|
ignorecase = true,
|
|
mapleader = " ",
|
|
mouse = "a",
|
|
number = true,
|
|
-- relative numbers in normal mode tool at the bottom of options.lua
|
|
numberwidth = 2,
|
|
relativenumber = false,
|
|
expandtab = true,
|
|
shiftwidth = 2,
|
|
smartindent = true,
|
|
tabstop = 8, -- Number of spaces that a <Tab> in the file counts for
|
|
timeoutlen = 400,
|
|
-- interval for writing swap file to disk, also used by gitsigns
|
|
updatetime = 250,
|
|
undofile = true, -- keep a permanent undo (across restarts)
|
|
-- NvChad options
|
|
nvChad = {
|
|
copy_cut = true, -- copy cut text ( x key ), visual and normal mode
|
|
copy_del = true, -- copy deleted text ( dd key ), visual and normal mode
|
|
insert_nav = true, -- navigation in insertmode
|
|
window_nav = true,
|
|
theme_toggler = false,
|
|
-- used for updater
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
update_branch = "main",
|
|
},
|
|
}
|
|
|
|
-- ui configs
|
|
M.ui = {
|
|
italic_comments = false,
|
|
-- theme to be used, check available themes with `<leader> + t + h`
|
|
theme = "onedark",
|
|
-- toggle between two themes, see theme_toggler mappings
|
|
theme_toggler = {
|
|
"onedark",
|
|
"gruvchad",
|
|
},
|
|
-- 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,
|
|
}
|
|
|
|
-- these are plugin related options
|
|
M.plugins = {
|
|
-- enable and disable plugins (false for disable)
|
|
plugin_status = {
|
|
autosave = false, -- to autosave files
|
|
blankline = true, -- show code scope with symbols
|
|
bufferline = true, -- list open buffers up the top, easy switching too
|
|
colorizer = false, -- color RGB, HEX, CSS, NAME color codes
|
|
comment = true, -- easily (un)comment code, language aware
|
|
dashboard = false, -- NeoVim 'home screen' on open
|
|
esc_insertmode = true, -- map to <ESC> with no lag
|
|
feline = true, -- statusline
|
|
gitsigns = true, -- gitsigns in statusline
|
|
lspsignature = true, -- lsp enhancements
|
|
neoformat = true, -- universal code formatter
|
|
neoscroll = false, -- smooth scroll
|
|
telescope_media = false, -- media previews within telescope finders
|
|
truezen = false, -- distraction free & minimalist UI mode
|
|
vim_fugitive = false, -- git integration & tooling
|
|
vim_matchup = false, -- % operator enhancements
|
|
},
|
|
options = {
|
|
lspconfig = {
|
|
servers = {} -- eg: "html"
|
|
},
|
|
nvimtree = {
|
|
enable_git = 0
|
|
},
|
|
statusline = { -- statusline related options
|
|
-- these are filetypes, not pattern matched
|
|
-- shown filetypes will overrule hidden filetypes
|
|
hidden = {
|
|
"help",
|
|
"dashboard",
|
|
"NvimTree",
|
|
"terminal",
|
|
},
|
|
shown = {},
|
|
-- default, round , slant , block , arrow
|
|
style = "default",
|
|
},
|
|
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,
|
|
},
|
|
default_plugin_config_replace = {},
|
|
}
|
|
|
|
-- mappings -- don't use a single keymap twice --
|
|
-- non plugin mappings
|
|
M.mappings = {
|
|
-- custom = {}, -- all custom user mappings
|
|
-- close current focused buffer
|
|
close_buffer = "<leader>x",
|
|
copy_whole_file = "<C-a>", -- copy all contents of the current buffer
|
|
line_number_toggle = "<leader>n", -- show or hide line number
|
|
new_buffer = "<S-t>", -- open a new buffer
|
|
new_tab = "<C-t>b", -- open a new vim tab
|
|
save_file = "<C-s>", -- save file using :w
|
|
theme_toggler = "<leader>tt", -- for theme toggler, see in ui.theme_toggler
|
|
-- navigation in insert mode, only if enabled in options
|
|
insert_nav = {
|
|
backward = "<C-h>",
|
|
end_of_line = "<C-e>",
|
|
forward = "<C-l>",
|
|
next_line = "<C-k>",
|
|
prev_line = "<C-j>",
|
|
top_of_line = "<C-a>",
|
|
},
|
|
--better window movement
|
|
window_nav = {
|
|
moveLeft = "<C-h>",
|
|
moveRight = "<C-l>",
|
|
moveUp = "<C-k>",
|
|
moveDown = "<C-j>",
|
|
},
|
|
-- terminal related mappings
|
|
terminal = {
|
|
-- multiple mappings can be given for esc_termmode and esc_hide_termmode
|
|
-- get out of terminal mode
|
|
esc_termmode = { "jk" }, -- multiple mappings allowed
|
|
-- get out of terminal mode and hide it
|
|
esc_hide_termmode = { "JK" }, -- multiple mappings allowed
|
|
-- show & recover hidden terminal buffers in a telescope picker
|
|
pick_term = "<leader>W",
|
|
-- below three are for spawning terminals
|
|
new_horizontal = "<leader>h",
|
|
new_vertical = "<leader>v",
|
|
new_window = "<leader>w",
|
|
},
|
|
-- update nvchad from nvchad, chadness 101
|
|
update_nvchad = "<leader>uu",
|
|
}
|
|
|
|
-- all plugins related mappings
|
|
M.mappings.plugins = {
|
|
-- list open buffers up the top, easy switching too
|
|
bufferline = {
|
|
next_buffer = "<TAB>", -- next buffer
|
|
prev_buffer = "<S-Tab>", -- previous buffer
|
|
},
|
|
-- easily (un)comment code, language aware
|
|
comment = {
|
|
toggle = "<leader>/", -- toggle comment (works on multiple lines)
|
|
},
|
|
-- NeoVim 'home screen' on open
|
|
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
|
|
},
|
|
-- map to <ESC> with no lag
|
|
better_escape = { -- <ESC> will still work
|
|
esc_insertmode = { "jk" }, -- multiple mappings allowed
|
|
},
|
|
-- file explorer/tree
|
|
nvimtree = {
|
|
toggle = "<C-n>",
|
|
focus = "<leader>e",
|
|
},
|
|
-- universal code formatter
|
|
neoformat = {
|
|
format = "<leader>fm",
|
|
},
|
|
-- multitool for finding & picking things
|
|
telescope = {
|
|
buffers = "<leader>fb",
|
|
find_files = "<leader>ff",
|
|
find_hiddenfiles = "<leader>fa",
|
|
git_commits = "<leader>cm",
|
|
git_status = "<leader>gt",
|
|
help_tags = "<leader>fh",
|
|
live_grep = "<leader>fw",
|
|
oldfiles = "<leader>fo",
|
|
themes = "<leader>th", -- NvChad theme picker
|
|
-- media previews within telescope finders
|
|
telescope_media = {
|
|
media_files = "<leader>fp",
|
|
},
|
|
},
|
|
-- distraction free & minimalist UI mode
|
|
truezen = {
|
|
ataraxis_mode = "<leader>zz", -- center
|
|
focus_mode = "<leader>zf",
|
|
minimalistic_mode = "<leader>zm", -- as it is
|
|
},
|
|
-- git integration & tooling
|
|
vim_fugitive = {
|
|
diff_get_2 = "<leader>gh",
|
|
diff_get_3 = "<leader>gl",
|
|
git = "<leader>gs",
|
|
git_blame = "<leader>gb",
|
|
},
|
|
}
|
|
|
|
|
|
return M
|