Add space gg for neogit
This commit is contained in:
parent
61b47328cd
commit
ba4c4d9773
|
@ -0,0 +1 @@
|
|||
vim.opt_local.conceallevel = 2
|
3
init.lua
3
init.lua
|
@ -278,3 +278,6 @@ vim.cmd 'set shiftwidth=2'
|
|||
-- Oil plugin
|
||||
require('oil').setup()
|
||||
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
|
||||
|
||||
-- Neogit plugin
|
||||
vim.keymap.set('n', '<Leader>gg', ':Neogit<CR>', { desc = 'Neogit open' })
|
||||
|
|
|
@ -8,8 +8,16 @@ return {
|
|||
org_agenda_files = '~/orgfiles/**/*',
|
||||
org_default_notes_file = '~/orgfiles/refile.org',
|
||||
org_capture_templates = {
|
||||
x = {
|
||||
description = 'Journal Personal',
|
||||
datetree = {
|
||||
tree_type = 'day',
|
||||
},
|
||||
template = '\n**** %?\nEntered on %U\n',
|
||||
target = '~/OrgMode-Personal/002-Areas/journal.org',
|
||||
},
|
||||
j = {
|
||||
description = 'Journal',
|
||||
description = 'Journal Inmar',
|
||||
datetree = {
|
||||
tree_type = 'day',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue