Add vis
This commit is contained in:
parent
91d09704f1
commit
7ecda7ede1
3 changed files with 84 additions and 3 deletions
14
vis/visrc.lua
Normal file
14
vis/visrc.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
-- load standard vis module, providing parts of the Lua API
|
||||
require('vis')
|
||||
|
||||
vis.events.subscribe(vis.events.INIT, function()
|
||||
-- Your global configuration options
|
||||
end)
|
||||
|
||||
vis.events.subscribe(vis.events.WIN_OPEN, function(win)
|
||||
-- Your per window configuration options e.g.
|
||||
vis:command('set number on')
|
||||
vis:command('set cursorline on')
|
||||
vis:command('set autoindent on')
|
||||
vis:command('set theme base16-london-tube')
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue