-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
21 lines (16 loc) · 696 Bytes
/
init.lua
File metadata and controls
21 lines (16 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- insert completion plugins: keyword, dictionary, line and character
local plugin = 'plugins/vis-ins-completion/'
local d = require(plugin..'complete-dict')
local k = require(plugin..'complete-keyword')
local l = require(plugin..'complete-line')
local c = require(plugin..'complete-char')
-- dictfiles = {
-- dirname = '$HOME/.local/share/dict/',
-- text = '/usr/share/words',
-- }
-- L.VIS_MENU_LINES = 4 -- default
-- K.completeopts.default.w = "tr -cs '[:alnum:]_.:-' '\n'" -- WORDS instead of words
-- K.completeopts.bash = {
-- "tr -cs '[:alnum:]_' '\n'", -- only one command will read file content
-- "dmenu_path", -- dmenu_path script ships with dmenu(1)
-- }