diff options
Diffstat (limited to 'home-config/nvim/config/init.vim')
-rw-r--r-- | home-config/nvim/config/init.vim | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/home-config/nvim/config/init.vim b/home-config/nvim/config/init.vim index 6d6fa15..6735d81 100644 --- a/home-config/nvim/config/init.vim +++ b/home-config/nvim/config/init.vim | |||
@@ -27,7 +27,7 @@ Plug 'ms-jpq/coq.artifacts', {'branch':'artifacts'} | |||
27 | Plug 'williamboman/mason.nvim' | 27 | Plug 'williamboman/mason.nvim' |
28 | Plug 'williamboman/mason-lspconfig.nvim' | 28 | Plug 'williamboman/mason-lspconfig.nvim' |
29 | Plug 'neovim/nvim-lspconfig' | 29 | Plug 'neovim/nvim-lspconfig' |
30 | Plug 'nvim-orgmode/orgmode' | 30 | "Plug 'nvim-orgmode/orgmode' |
31 | Plug 'ggandor/leap.nvim' | 31 | Plug 'ggandor/leap.nvim' |
32 | Plug 'xiyaowong/transparent.nvim' | 32 | Plug 'xiyaowong/transparent.nvim' |
33 | call plug#end() | 33 | call plug#end() |
@@ -43,7 +43,6 @@ lua << END | |||
43 | require('lualine').setup() | 43 | require('lualine').setup() |
44 | require('coq') | 44 | require('coq') |
45 | require("transparent") | 45 | require("transparent") |
46 | require('orgmode').setup_ts_grammar() | ||
47 | require("mason").setup() | 46 | require("mason").setup() |
48 | require("mason-lspconfig").setup { | 47 | require("mason-lspconfig").setup { |
49 | ensure_installed = { "pyright" }, | 48 | ensure_installed = { "pyright" }, |
@@ -62,18 +61,9 @@ require('nvim-treesitter.configs').setup { | |||
62 | enable = true, | 61 | enable = true, |
63 | additional_vim_regex_highlighting = {'org'}, | 62 | additional_vim_regex_highlighting = {'org'}, |
64 | }, | 63 | }, |
65 | ensure_installed = {'org', 'vim', 'python'}, | 64 | ensure_installed = {'vim', 'python'}, |
66 | } | 65 | } |
67 | 66 | ||
68 | require('orgmode').setup({ | ||
69 | org_agenda_files = {'~/Sync/org/**/*'}, | ||
70 | org_default_notes_file = '~/Sync/org/refile.org', | ||
71 | org_blank_before_new_entry = { | ||
72 | heading = false, | ||
73 | plain_list_item = false, | ||
74 | }, | ||
75 | }) | ||
76 | |||
77 | vim.opt.conceallevel = 2 | 67 | vim.opt.conceallevel = 2 |
78 | vim.opt.concealcursor = nc | 68 | vim.opt.concealcursor = nc |
79 | 69 | ||