summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/codewindow.lua
blob: 97031435c3455ed6199067af090e4723082eca74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local codewindow = require('codewindow')
codewindow.setup({
  show_cursor = false,
  minimap_width = 15,
  window_border = 'single',
  exclude_filetypes = {
    "netrw",
    "help",
    "term",
    "gitcommit",
    "packer",
    "vim",
    "Trouble",
    "alpha",
    "NvimTree",
  },
})
codewindow.apply_default_keybinds()