mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
Compare commits
1 commit
2f6d8347b2
...
81bbc1acfa
Author | SHA1 | Date | |
---|---|---|---|
|
81bbc1acfa |
4 changed files with 1 additions and 35 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 97b9fec09c0df9c4b6fe1100a551e47271d3b033
|
Subproject commit 77a188a745aaed803e0b1cbbaffdc000625fdc24
|
|
@ -22,9 +22,6 @@ let s:plug = funcref('dotfiles#plugman#register')
|
||||||
call s:plug('alaviss/nim.nvim')
|
call s:plug('alaviss/nim.nvim')
|
||||||
call s:plug('stevearc/vim-arduino')
|
call s:plug('stevearc/vim-arduino')
|
||||||
call s:plug('xiyaowong/coc-nvim-lua')
|
call s:plug('xiyaowong/coc-nvim-lua')
|
||||||
call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{
|
|
||||||
call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' })
|
|
||||||
" }}}
|
|
||||||
call s:plug('noahfrederick/vim-laravel') " dependencies {{{
|
call s:plug('noahfrederick/vim-laravel') " dependencies {{{
|
||||||
call s:plug('noahfrederick/vim-composer')
|
call s:plug('noahfrederick/vim-composer')
|
||||||
call s:plug('tpope/vim-projectionist')
|
call s:plug('tpope/vim-projectionist')
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
local neorg = require('neorg')
|
|
||||||
local cmp = require('cmp')
|
|
||||||
|
|
||||||
local cmp_config = cmp.get_config()
|
|
||||||
table.insert(cmp_config.sources, { name = "neorg" })
|
|
||||||
cmp.setup(cmp_config)
|
|
||||||
|
|
||||||
require('neorg').setup {
|
|
||||||
load = {
|
|
||||||
["core.defaults"] = {},
|
|
||||||
["core.norg.concealer"] = {},
|
|
||||||
["core.norg.completion"] = {
|
|
||||||
config = {
|
|
||||||
engine = "nvim-cmp"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
local parser_configs = require('nvim-treesitter.parsers').get_parser_configs()
|
|
||||||
|
|
||||||
parser_configs.norg = {
|
|
||||||
install_info = {
|
|
||||||
url = "https://github.com/nvim-neorg/tree-sitter-norg",
|
|
||||||
files = { "src/parser.c", "src/scanner.cc" },
|
|
||||||
branch = "main"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
require('nvim-treesitter.configs').setup {
|
|
||||||
ensure_installed = { "norg" }
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue