diff options
Diffstat (limited to 'config/nvim/lua/master/plugins')
-rw-r--r-- | config/nvim/lua/master/plugins/comment.lua | 28 | ||||
-rw-r--r-- | config/nvim/lua/master/plugins/gruvbox.lua | 27 | ||||
-rw-r--r-- | config/nvim/lua/master/plugins/neotree.lua | 34 | ||||
-rw-r--r-- | config/nvim/lua/master/plugins/nvim-autopairs.lua | 6 | ||||
-rw-r--r-- | config/nvim/lua/master/plugins/toggleterm.lua | 13 |
5 files changed, 0 insertions, 108 deletions
diff --git a/config/nvim/lua/master/plugins/comment.lua b/config/nvim/lua/master/plugins/comment.lua deleted file mode 100644 index 66dcbc5..0000000 --- a/config/nvim/lua/master/plugins/comment.lua +++ /dev/null @@ -1,28 +0,0 @@ -require('Comment').setup{ - - ---Add a space b/w comment and the line - padding = true, - - ---Whether the cursor should stay at its position - sticky = true, - - ---Lines to be ignored while (un)comment - ignore = nil, - - ---LHS of toggle mappings in NORMAL mode - toggler = { - ---Line-comment toggle keymap - line = 'cc', - ---Block-comment toggle keymap - block = 'cb', - }, - - ---LHS of operator-pending mappings in NORMAL and VISUAL mode - opleader = { - ---Line-comment keymap - line = 'cc', - ---Block-comment keymap - block = 'cb', - }, - -} diff --git a/config/nvim/lua/master/plugins/gruvbox.lua b/config/nvim/lua/master/plugins/gruvbox.lua deleted file mode 100644 index 01ad938..0000000 --- a/config/nvim/lua/master/plugins/gruvbox.lua +++ /dev/null @@ -1,27 +0,0 @@ --- Default options: -require("gruvbox").setup({ - terminal_colors = true, -- add neovim terminal colors - undercurl = true, - underline = true, - bold = true, - italic = { - strings = true, - emphasis = true, - comments = true, - operators = false, - folds = true, - }, - - strikethrough = true, - invert_selection = false, - invert_signs = false, - invert_tabline = false, - invert_intend_guides = false, - inverse = true, -- invert background for search, diffs, statuslines and errors - contrast = "", -- can be "hard", "soft" or empty string - palette_overrides = {}, - overrides = {}, - dim_inactive = false, - transparent_mode = false, -}) - diff --git a/config/nvim/lua/master/plugins/neotree.lua b/config/nvim/lua/master/plugins/neotree.lua deleted file mode 100644 index abdf1fc..0000000 --- a/config/nvim/lua/master/plugins/neotree.lua +++ /dev/null @@ -1,34 +0,0 @@ -require("neo-tree").setup({ - --Setup - filesystem = { - window = { - mappings = { - ["l"] = "open", - ["h"] = "close_node", - ["zh"] = "toggle_hidden", - ["H"] = "close_all_nodes", - } - } - }, - - --Indent Markers - default_component_configs = { - indent = { - with_markers = true, - indent_marker = "│", - last_indent_marker = "└", - indent_size = 2, - }, - }, - - --Expanders - default_component_configs = { - indent = { - with_expanders = false, --Not active - expander_collapsed = "", - expander_expanded = "", - expander_highlight = "NeoTreeExpander", - }, - }, - -}) diff --git a/config/nvim/lua/master/plugins/nvim-autopairs.lua b/config/nvim/lua/master/plugins/nvim-autopairs.lua deleted file mode 100644 index 0649588..0000000 --- a/config/nvim/lua/master/plugins/nvim-autopairs.lua +++ /dev/null @@ -1,6 +0,0 @@ -require('nvim-autopairs').setup({ - disable_filetype = { "TelescopePrompt", "spectre_panel", "neo-tree-popup", "conf"}, - disable_in_macro = true, - disable_in_visualblock = false, - disable_in_replace_mode = true, -}) diff --git a/config/nvim/lua/master/plugins/toggleterm.lua b/config/nvim/lua/master/plugins/toggleterm.lua deleted file mode 100644 index 79c3488..0000000 --- a/config/nvim/lua/master/plugins/toggleterm.lua +++ /dev/null @@ -1,13 +0,0 @@ -require("toggleterm").setup{ - size = 6, - open_mapping = [[<c-f>]], - hide_numbers = true, - shade_terminals = true, - direction = "float", - - float_opts = { - border = 'curved', - winblend = 10, --transparency - } - -} |