-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
37 lines (32 loc) · 836 Bytes
/
Copy pathinit.lua
File metadata and controls
37 lines (32 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--
-- keymap 'g<'
-- no enter spam anymore
-- NOTE:
-- - experminatal
-- - doesn't play will with 'noice.nvim'
require('vim._core.ui2').enable {
enable = true,
msg = {
target = 'cmd',
pager = { height = 0.5 },
dialog = { height = 0.5 },
cmd = { height = 0.5 },
msg = { height = 0.5, timeout = 4500 },
},
}
require 'gl00ria.config.options'
require 'gl00ria.config.keymaps'
-- set up vim.pack
require 'pack'
require 'gl00ria.config.autocmd'
require 'plugins'
-- The last line is called `modeline`. See `:help modeline`
--
-- basically:
-- a modeline is a way for a file to tell Vim/Neovim which editor settings should be used when that file is opened (:set ts=4 sw=4 et)
--
-- ts=2 → tabstop = 2
-- sw=2 → shiftwidth = 2
-- et → expandtab (insert spaces instead of tabs)
--
-- vim: ts=2 sts=2 sw=2 et