update
This commit is contained in:
		
							parent
							
								
									64ae749022
								
							
						
					
					
						commit
						487ccf96ab
					
				| 
						 | 
					@ -10,7 +10,7 @@ source ~/.config/nvim/init.commands.vim
 | 
				
			||||||
"
 | 
					"
 | 
				
			||||||
" require lua init modules
 | 
					" require lua init modules
 | 
				
			||||||
lua <<EOF
 | 
					lua <<EOF
 | 
				
			||||||
	require('init-lsp')
 | 
						-- require('init-lsp')
 | 
				
			||||||
EOF
 | 
					EOF
 | 
				
			||||||
 | 
					
 | 
				
			||||||
" TODO - maybe separate some of these into own files too
 | 
					" TODO - maybe separate some of these into own files too
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,7 +24,7 @@ Plug '~/projects/nvim-paper-tonic'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
"   #nvim-treesitter {{{
 | 
					"   #nvim-treesitter {{{
 | 
				
			||||||
  " https://github.com/nvim-treesitter/nvim-treesitter
 | 
					  " https://github.com/nvim-treesitter/nvim-treesitter
 | 
				
			||||||
  Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}  " update the parsers on update
 | 
					  " Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}  " update the parsers on update
 | 
				
			||||||
  " config needs to be after call to plug#end
 | 
					  " config needs to be after call to plug#end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  " Treesitter uses a different parser for every language, which needs to be generated
 | 
					  " Treesitter uses a different parser for every language, which needs to be generated
 | 
				
			||||||
| 
						 | 
					@ -53,7 +53,7 @@ Plug '~/projects/nvim-paper-tonic'
 | 
				
			||||||
  "}}}
 | 
					  "}}}
 | 
				
			||||||
"   #playground (temporary) {{{
 | 
					"   #playground (temporary) {{{
 | 
				
			||||||
  " https://github.com/nvim-treesitter/playground
 | 
					  " https://github.com/nvim-treesitter/playground
 | 
				
			||||||
  Plug 'nvim-treesitter/playground'
 | 
					  " Plug 'nvim-treesitter/playground'
 | 
				
			||||||
  "}}}
 | 
					  "}}}
 | 
				
			||||||
"   #vim-lspconfig {{{
 | 
					"   #vim-lspconfig {{{
 | 
				
			||||||
  " https://github.com/neovim/nvim-lspconfig
 | 
					  " https://github.com/neovim/nvim-lspconfig
 | 
				
			||||||
| 
						 | 
					@ -72,13 +72,13 @@ Plug '~/projects/nvim-paper-tonic'
 | 
				
			||||||
"   #nvim-cmp {{{
 | 
					"   #nvim-cmp {{{
 | 
				
			||||||
	" https://github.com/hrsh7th/nvim-cmp/
 | 
						" https://github.com/hrsh7th/nvim-cmp/
 | 
				
			||||||
  " completion
 | 
					  " completion
 | 
				
			||||||
	Plug 'hrsh7th/nvim-cmp', { 'branch': 'main' }
 | 
						" Plug 'hrsh7th/nvim-cmp', { 'branch': 'main' }
 | 
				
			||||||
	Plug 'hrsh7th/cmp-nvim-lsp', { 'branch': 'main' }
 | 
						" Plug 'hrsh7th/cmp-nvim-lsp', { 'branch': 'main' }
 | 
				
			||||||
	Plug 'hrsh7th/cmp-buffer', { 'branch': 'main' }
 | 
						" Plug 'hrsh7th/cmp-buffer', { 'branch': 'main' }
 | 
				
			||||||
	Plug 'hrsh7th/cmp-path', { 'branch': 'main' }
 | 
						" Plug 'hrsh7th/cmp-path', { 'branch': 'main' }
 | 
				
			||||||
	" Plug 'uga-rosa/cmp-dictionary', { 'branch': 'main' }
 | 
						" Plug 'uga-rosa/cmp-dictionary', { 'branch': 'main' }
 | 
				
			||||||
	let g:cmp_dictionary_exact = -1
 | 
						" let g:cmp_dictionary_exact = -1
 | 
				
			||||||
	Plug 'quangnguyen30192/cmp-nvim-ultisnips', { 'branch': 'main' }
 | 
						" Plug 'quangnguyen30192/cmp-nvim-ultisnips', { 'branch': 'main' }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  "}}}
 | 
					  "}}}
 | 
				
			||||||
"   #indent-blankline.nvim {{{
 | 
					"   #indent-blankline.nvim {{{
 | 
				
			||||||
| 
						 | 
					@ -120,7 +120,7 @@ Plug '~/projects/nvim-paper-tonic'
 | 
				
			||||||
"   #nvim-ts-autotag  {{{
 | 
					"   #nvim-ts-autotag  {{{
 | 
				
			||||||
" https://github.com/windwp/nvim-ts-autotag
 | 
					" https://github.com/windwp/nvim-ts-autotag
 | 
				
			||||||
" automatic html tag closing/renaming.
 | 
					" automatic html tag closing/renaming.
 | 
				
			||||||
Plug 'windwp/nvim-ts-autotag', { 'branch': 'main' }
 | 
					" Plug 'windwp/nvim-ts-autotag', { 'branch': 'main' }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  "}}}
 | 
					  "}}}
 | 
				
			||||||
| 
						 | 
					@ -354,10 +354,10 @@ runtime macros/matchit.vim
 | 
				
			||||||
 | 
					
 | 
				
			||||||
" require lua init modules
 | 
					" require lua init modules
 | 
				
			||||||
lua <<EOF
 | 
					lua <<EOF
 | 
				
			||||||
	require('init-plugins')
 | 
						-- require('init-plugins')
 | 
				
			||||||
	require('init-treesitter')
 | 
						-- require('init-treesitter')
 | 
				
			||||||
	require('init-indent-blankline')
 | 
						-- require('init-indent-blankline')
 | 
				
			||||||
	require('init-cmp')
 | 
						-- require('init-cmp')
 | 
				
			||||||
EOF
 | 
					EOF
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -358,3 +358,58 @@ LCP
 | 
				
			||||||
MonsterInsights
 | 
					MonsterInsights
 | 
				
			||||||
Recaptcha
 | 
					Recaptcha
 | 
				
			||||||
crawlable
 | 
					crawlable
 | 
				
			||||||
 | 
					Tookan
 | 
				
			||||||
 | 
					superglobal
 | 
				
			||||||
 | 
					Cookieless
 | 
				
			||||||
 | 
					Websockets
 | 
				
			||||||
 | 
					postmeta
 | 
				
			||||||
 | 
					Webhook
 | 
				
			||||||
 | 
					XSS
 | 
				
			||||||
 | 
					ChatGPT
 | 
				
			||||||
 | 
					Webhooks
 | 
				
			||||||
 | 
					webhook
 | 
				
			||||||
 | 
					datastores
 | 
				
			||||||
 | 
					datastore
 | 
				
			||||||
 | 
					HMAC
 | 
				
			||||||
 | 
					oAuth
 | 
				
			||||||
 | 
					webhooks
 | 
				
			||||||
 | 
					MRP
 | 
				
			||||||
 | 
					Auth
 | 
				
			||||||
 | 
					npm
 | 
				
			||||||
 | 
					WooCommerce's
 | 
				
			||||||
 | 
					lifecycle
 | 
				
			||||||
 | 
					BFC
 | 
				
			||||||
 | 
					clearfixes
 | 
				
			||||||
 | 
					fallbacks
 | 
				
			||||||
 | 
					usermeta
 | 
				
			||||||
 | 
					HTML5
 | 
				
			||||||
 | 
					sessionStorage
 | 
				
			||||||
 | 
					localStorage
 | 
				
			||||||
 | 
					localStorage
 | 
				
			||||||
 | 
					ETag
 | 
				
			||||||
 | 
					Redux
 | 
				
			||||||
 | 
					GetWid
 | 
				
			||||||
 | 
					Heredoc
 | 
				
			||||||
 | 
					JMeter
 | 
				
			||||||
 | 
					linters
 | 
				
			||||||
 | 
					sidecart
 | 
				
			||||||
 | 
					LiteSpeed
 | 
				
			||||||
 | 
					async
 | 
				
			||||||
 | 
					Inlining
 | 
				
			||||||
 | 
					srcset
 | 
				
			||||||
 | 
					reflows
 | 
				
			||||||
 | 
					vocabuolary
 | 
				
			||||||
 | 
					SCSS
 | 
				
			||||||
 | 
					mixins
 | 
				
			||||||
 | 
					unlocker
 | 
				
			||||||
 | 
					VIN
 | 
				
			||||||
 | 
					Coinbase
 | 
				
			||||||
 | 
					BitPay
 | 
				
			||||||
 | 
					BTCPay
 | 
				
			||||||
 | 
					EnginePress
 | 
				
			||||||
 | 
					WordHero
 | 
				
			||||||
 | 
					KPIs
 | 
				
			||||||
 | 
					KPI
 | 
				
			||||||
 | 
					PPC
 | 
				
			||||||
 | 
					frontends
 | 
				
			||||||
 | 
					Sebastien
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							
		Loading…
	
		Reference in New Issue