aboutsummaryrefslogtreecommitdiff
path: root/visrc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'visrc.lua')
-rw-r--r--visrc.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/visrc.lua b/visrc.lua
deleted file mode 100644
index 95aa1c0..0000000
--- a/visrc.lua
+++ /dev/null
@@ -1,15 +0,0 @@
--- load standard vis module, providing parts of the Lua API
-require('vis')
-
-vis.events.start = function()
- -- Your global configuration options e.g.
- -- vis:command('map! normal j gj')
-end
-
-vis.events.win_open = function(win)
- -- enable syntax highlighting for known file types
- vis.filetype_detect(win)
-
- -- Your per window configuration options e.g.
- -- vis:command('set number')
-end