diff options
| author | venomade <venomade@venomade.com> | 2026-02-11 11:42:58 +0000 |
|---|---|---|
| committer | venomade <venomade@venomade.com> | 2026-02-11 11:42:58 +0000 |
| commit | 0bd150185551b6d8835d022c15a5f6e832d51113 (patch) | |
| tree | 10bf3f3443df49a44eb47b328b73b7e76b0a4924 /.config/nvim/lua/plugins/orgmode.lua | |
| parent | 8d688d1107c46b6dfdcaf02fa5c9c4c8a4640e65 (diff) | |
Asahi
Soft reset of dotfiles specific to Asahi, Sway and Neovim.
Diffstat (limited to '.config/nvim/lua/plugins/orgmode.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/orgmode.lua | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.config/nvim/lua/plugins/orgmode.lua b/.config/nvim/lua/plugins/orgmode.lua deleted file mode 100644 index f35d7b4..0000000 --- a/.config/nvim/lua/plugins/orgmode.lua +++ /dev/null @@ -1,31 +0,0 @@ -return { - 'nvim-orgmode/orgmode', - event = 'VeryLazy', - ft = { 'org' }, - config = function() - -- Setup orgmode - require('orgmode').setup({ - org_agenda_files = '~/orgfiles/**/*', - org_default_notes_file = '~/orgfiles/refile.org', - org_hide_emphasis_markers = true, - }) - - -- Enable line wrapping and line breaking for Org files - vim.api.nvim_create_augroup("OrgMode", { clear = true }) - vim.api.nvim_create_autocmd("FileType", { - pattern = "org", - callback = function() - vim.opt_local.wrap = true - vim.opt_local.linebreak = true - vim.opt_local.textwidth = 80 - end, - }) - - -- AUTHORS_NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option - -- add ~org~ to ignore_install - -- require('nvim-treesitter.configs').setup({ - -- ensure_installed = 'all', - -- ignore_install = { 'org' }, - -- }) - end, -} |
