-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
61 lines (51 loc) · 1.1 KB
/
init.lua
File metadata and controls
61 lines (51 loc) · 1.1 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- Set <space> as the leader key
-- See `:help mapleader`
vim.g.mapleader = ' '
vim.g.maplocalleader = ''
require 'options'
require 'lazy-bootstrap'
-- [[ Configure plugins ]]
require('lazy').setup({
-- Detect tabstop and shiftwidth automatically
{
-- 'tpope/vim-sleuth',
'nmac427/guess-indent.nvim',
event = { 'BufRead', 'BufNewFile' },
opts = {},
},
{
'kylechui/nvim-surround',
event = 'VeryLazy',
opts = {},
},
{
'kevinhwang91/nvim-bqf',
-- enabled = false,
ft = 'qf',
dependencies = {
'junegunn/fzf',
{
'stevearc/quicker.nvim',
-- ft = 'qf',
---@module "quicker"
---@type quicker.SetupOptions
opts = {},
},
},
},
{ import = 'custom.plugins' },
}, {
dev = { path = '~/Projects/' },
-- none, single, double, rounded, solid, shadow
ui = { border = 'rounded' },
})
-- require 'keymap'
-- require 'highlight'
-- require 'snips.go'
vim.filetype.add {
extension = {
ftl = 'fluent',
},
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et