changed theme, added C-6 mapping, need to figure out how to load deno or node depending on project
This commit is contained in:
1 parent
aa809c71e6
commit
8456e321a9
5 files changed
+38
-29
No files matched your search
+11
-14
@@ -1,33 +1,30 @@
|
||||
return {
|
||||
{
|
||||
'nvim-neorg/neorg',
|
||||
tag = '0.0.12',
|
||||
"nvim-neorg/neorg",
|
||||
tag = "0.0.12",
|
||||
config = function()
|
||||
require('neorg').setup {
|
||||
require("neorg").setup {
|
||||
load = {
|
||||
['core.defaults'] = {},
|
||||
['core.norg.concealer'] = {},
|
||||
['core.norg.completion'] = {
|
||||
["core.defaults"] = {},
|
||||
["core.norg.concealer"] = {},
|
||||
["core.norg.completion"] = {
|
||||
config = {
|
||||
engine = 'nvim-cmp'
|
||||
engine = "nvim-cmp"
|
||||
}
|
||||
},
|
||||
['core.export'] = {},
|
||||
["core.export"] = {},
|
||||
}
|
||||
}
|
||||
end,
|
||||
dependencies = 'nvim-lua/plenary.nvim'
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
build = ":Neorg sync-parsers"
|
||||
},
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
require("which-key").setup({
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
})
|
||||
require("which-key").setup {}
|
||||
end,
|
||||
},
|
||||
}
|
||||
Reference in new issue
Block a user