summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/codewindow.lua
blob: c5f71957fd75d0cef93b22677349ba0cf23a7596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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",
  },
})
codewindow.apply_default_keybinds()