Compare commits

...

3 Commits

3 changed files with 17 additions and 1 deletions

View File

@ -31,7 +31,6 @@ return {
"NeogitPopup",
"NeogitLogView",
"norg",
"org",
},
},
indent = {

View File

@ -35,6 +35,13 @@ return {
"~/Git/College/**/*",
"~/Notes/**/*",
},
notifications = {
enabled = true,
cron_enabled = true,
repeater_reminder_time = { 2880, 1440, 720, 360, 180, 60, 30, 15, 10, 5, 0 },
deadline_warning_reminder_time = { 2880, 1440, 720, 360, 180, 60, 30, 15, 10, 5, 0 }
},
org_id_link_to_org_use_id = true,
org_default_notes_file = "~/Notes/notes.org",
org_agenda_start_day = "-1d",
calendar_week_start_day = 0,

View File

@ -136,6 +136,16 @@ return {
require("nvim-treesitter.configs").setup({
auto_install = true,
ignore_install = { "comment" },
ensure_installed = {
"org",
"regex",
"vim",
"lua",
"bash",
"markdown",
"markdown_inline",
"typst",
},
incremental_selection = {
enable = true,
keymaps = {