From 0c45c8a43c217d3de9c2133739ca84918ea68c30 Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Mon, 30 Jan 2023 15:13:59 +0000 Subject: [PATCH] Delete codewindow.lua --- .../nvim/lua/plugin-config/codewindow.lua | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 home/.config/nvim/lua/plugin-config/codewindow.lua diff --git a/home/.config/nvim/lua/plugin-config/codewindow.lua b/home/.config/nvim/lua/plugin-config/codewindow.lua deleted file mode 100644 index 012e834..0000000 --- a/home/.config/nvim/lua/plugin-config/codewindow.lua +++ /dev/null @@ -1,17 +0,0 @@ -local codewindow = require('codewindow') -codewindow.setup { - active_in_terminals = false, -- Should the minimap activate for terminal buffers - auto_enable = false, -- Automatically open the minimap when entering a (non-excluded) buffer (accepts a table of filetypes) - exclude_filetypes = { "NvimTree" }, -- Choose certain filetypes to not show minimap on - max_minimap_height = nil, -- The maximum height the minimap can take (including borders) - max_lines = nil, -- If auto_enable is true, don't open the minimap for buffers which have more than this many lines. - minimap_width = 20, -- The width of the text part of the minimap - use_lsp = true, -- Use the builtin LSP to show errors and warnings - use_treesitter = true, -- Use nvim-treesitter to highlight the code - use_git = true, -- Show small dots to indicate git additions and deletions - width_multiplier = 2, -- How many characters one dot represents - z_index = 1, -- The z-index the floating window will be on - show_cursor = true, -- Show the cursor position in the minimap - window_border = 'single' -- The border style of the floating window (accepts all usual options) -} -codewindow.apply_default_keybinds()