clean : debloat config | rm un-needed plugins

This commit is contained in:
siduck76 2021-10-02 10:41:50 +05:30
parent ba3af27de0
commit a1c234e001
6 changed files with 0 additions and 154 deletions

View file

@ -58,7 +58,6 @@ M.ui = {
M.plugins = {
-- enable and disable plugins (false for disable)
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
@ -68,9 +67,7 @@ M.plugins = {
feline = true, -- statusline
gitsigns = true, -- gitsigns in statusline
lspsignature = true, -- lsp enhancements
neoscroll = false, -- smooth scroll
telescope_media = false, -- media previews within telescope finders
truezen = false, -- distraction free & minimalist UI mode
vim_matchup = true, -- % operator enhancements
cmp = true,
nvimtree = true,
@ -98,8 +95,6 @@ M.plugins = {
-- 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.plugins.better_escape
esc_insertmode_timeout = 300,
},
default_plugin_config_replace = {},
@ -195,12 +190,6 @@ M.mappings.plugins = {
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
},
}
return M

View file

@ -169,12 +169,4 @@ M.telescope_media = function()
map("n", m.media_files, ":Telescope media_files <CR>")
end
M.truezen = function()
local m = plugin_maps.truezen
map("n", m.ataraxis_mode, ":TZAtaraxis <CR>")
map("n", m.focus_mode, ":TZFocus <CR>")
map("n", m.minimalistic_mode, ":TZMinimalist <CR>")
end
return M