blob: cfc4dad541dcf55813db0d39c84b64bd5b28fadd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local codewindow = require('codewindow')
codewindow.setup({
show_cursor = false,
minimap_width = 15,
window_border = 'single',
exclude_filetypes = {
"netrw",
"help",
"term",
"gitcommit",
"packer",
"vim",
"Trouble",
},
})
codewindow.apply_default_keybinds()
|