nvim: put config in namespace “my” to avoid collisions
This commit is contained in:
parent
64131a109f
commit
7d2b96c8b1
|
@ -1,12 +1,12 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
require('functions')
|
require('my/functions')
|
||||||
require('settings')
|
require('my/settings')
|
||||||
require('keymaps')
|
require('my/keymaps')
|
||||||
require('fileformats')
|
require('my/fileformats')
|
||||||
require('lsp')
|
require('my/lsp')
|
||||||
require('completion')
|
require('my/completion')
|
||||||
require('ui')
|
require('my/ui')
|
||||||
require('coding')
|
require('my/coding')
|
||||||
|
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require('packer').sync()
|
require('packer').sync()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
require('keymaps')
|
require('my/keymaps')
|
||||||
require('ui')
|
require('my/ui')
|
||||||
|
|
||||||
packer.use { -- toggle comments
|
packer.use { -- toggle comments
|
||||||
'https://github.com/tomtom/tcomment_vim',
|
'https://github.com/tomtom/tcomment_vim',
|
|
@ -1,4 +1,4 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
|
|
||||||
packer.use 'https://github.com/hrsh7th/cmp-nvim-lsp'
|
packer.use 'https://github.com/hrsh7th/cmp-nvim-lsp'
|
||||||
packer.use 'https://github.com/hrsh7th/cmp-buffer'
|
packer.use 'https://github.com/hrsh7th/cmp-buffer'
|
|
@ -1,4 +1,4 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
|
|
||||||
packer.use {
|
packer.use {
|
||||||
'https://github.com/nvim-treesitter/nvim-treesitter',
|
'https://github.com/nvim-treesitter/nvim-treesitter',
|
|
@ -1,6 +1,6 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
require('keymaps')
|
require('my/keymaps')
|
||||||
require('completion')
|
require('my/completion')
|
||||||
|
|
||||||
packer.use {
|
packer.use {
|
||||||
'https://github.com/neovim/nvim-lspconfig',
|
'https://github.com/neovim/nvim-lspconfig',
|
|
@ -1,5 +1,5 @@
|
||||||
require('plugins')
|
require('my/plugins')
|
||||||
require('keymaps')
|
require('my/keymaps')
|
||||||
|
|
||||||
packer.use {
|
packer.use {
|
||||||
'https://github.com/folke/which-key.nvim',
|
'https://github.com/folke/which-key.nvim',
|
Loading…
Reference in New Issue
Block a user