commit
819f90eaeb
1 changed files with 34 additions and 2 deletions
|
@ -92,6 +92,7 @@ require('lazy').setup({
|
||||||
'hrsh7th/cmp-omni', -- source for omnifunc
|
'hrsh7th/cmp-omni', -- source for omnifunc
|
||||||
'hrsh7th/cmp-nvim-lua', -- nvim lua
|
'hrsh7th/cmp-nvim-lua', -- nvim lua
|
||||||
'hrsh7th/cmp-nvim-lsp-signature-help',
|
'hrsh7th/cmp-nvim-lsp-signature-help',
|
||||||
|
'nvim-orgmode/orgmode',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -130,6 +131,32 @@ require('lazy').setup({
|
||||||
'folke/trouble.nvim',
|
'folke/trouble.nvim',
|
||||||
-- config = function
|
-- config = function
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'nvim-orgmode/orgmode',
|
||||||
|
dependencies = {
|
||||||
|
{ 'nvim-treesitter/nvim-treesitter', lazy = true },
|
||||||
|
},
|
||||||
|
-- event = 'VeryLazy', -- doesn't work with existing comp and treesitter
|
||||||
|
config = function()
|
||||||
|
-- Load treesitter grammer for orgmode
|
||||||
|
require('orgmode').setup_ts_grammar()
|
||||||
|
|
||||||
|
-- Setup treesitter
|
||||||
|
require('nvim-treesitter.configs').setup({
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = { 'org' },
|
||||||
|
},
|
||||||
|
ensure_installed = { 'org' },
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Setup orgmode
|
||||||
|
require('orgmode').setup({
|
||||||
|
org_agenda_files = '~/orgfiles/**/*',
|
||||||
|
org_default_notes_file = '~/orgfiles/refile.org',
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
|
@ -180,6 +207,7 @@ require('catppuccin').setup({
|
||||||
vim.cmd.colorscheme "catppuccin"
|
vim.cmd.colorscheme "catppuccin"
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
|
vim.g.mapleader = ' '
|
||||||
-- some terminalmode settings
|
-- some terminalmode settings
|
||||||
vim.keymap.set('t', '<C-w>h', '<C-\\><C-N><C-w>h',
|
vim.keymap.set('t', '<C-w>h', '<C-\\><C-N><C-w>h',
|
||||||
{ noremap = true, desc = "Exit terminal-mode and move to left window." })
|
{ noremap = true, desc = "Exit terminal-mode and move to left window." })
|
||||||
|
@ -311,11 +339,14 @@ parser_config.satysfi = {
|
||||||
-- setup
|
-- setup
|
||||||
require 'nvim-treesitter.configs'.setup {
|
require 'nvim-treesitter.configs'.setup {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
'julia',
|
'c', 'cpp', 'lua', 'julia', 'satysfi',
|
||||||
'satysfi',
|
|
||||||
},
|
},
|
||||||
|
sync_install = false,
|
||||||
|
auto_install = true, -- requires tree-sitter cli in local
|
||||||
|
ignore_install = {},
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = { 'org' },
|
||||||
},
|
},
|
||||||
incremental_selection = {
|
incremental_selection = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
@ -608,6 +639,7 @@ cmp.setup {
|
||||||
{ name = 'path' },
|
{ name = 'path' },
|
||||||
{ name = 'nvim_lua' },
|
{ name = 'nvim_lua' },
|
||||||
{ name = 'luasnip' },
|
{ name = 'luasnip' },
|
||||||
|
{ name = 'orgmode' },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
-- cmdline completions
|
-- cmdline completions
|
||||||
|
|
Loading…
Reference in a new issue