nvim
This commit is contained in:
parent
dd311c869a
commit
6d253bb40a
3 changed files with 13 additions and 13 deletions
|
@ -53,6 +53,7 @@ force_ltr no
|
||||||
adjust_line_height 0
|
adjust_line_height 0
|
||||||
adjust_column_width 0
|
adjust_column_width 0
|
||||||
|
|
||||||
|
symbol_map U+E000–U+F8FF Symbols Nerd Font
|
||||||
#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols
|
#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols
|
||||||
|
|
||||||
#: Map the specified Unicode codepoints to a particular font. Useful
|
#: Map the specified Unicode codepoints to a particular font. Useful
|
||||||
|
|
|
@ -29,7 +29,12 @@ function M.setup()
|
||||||
config = function() require('configs.lsp').setup() end,
|
config = function() require('configs.lsp').setup() end,
|
||||||
requires = { 'b0o/schemastore.nvim' }
|
requires = { 'b0o/schemastore.nvim' }
|
||||||
}
|
}
|
||||||
use { 'hrsh7th/nvim-cmp', requires = { 'neovim/nvim-lspconfig' }, config = require('configs.nvim-cmp').setup }
|
use {
|
||||||
|
'hrsh7th/nvim-cmp',
|
||||||
|
requires = { 'neovim/nvim-lspconfig' },
|
||||||
|
config = function() require('configs.nvim-cmp').setup() end
|
||||||
|
}
|
||||||
|
|
||||||
use { 'hrsh7th/cmp-nvim-lsp', requires = { 'hrsh7th/nvim-cmp' } }
|
use { 'hrsh7th/cmp-nvim-lsp', requires = { 'hrsh7th/nvim-cmp' } }
|
||||||
use { 'hrsh7th/cmp-buffer', requires = { 'hrsh7th/nvim-cmp' } }
|
use { 'hrsh7th/cmp-buffer', requires = { 'hrsh7th/nvim-cmp' } }
|
||||||
use { 'hrsh7th/cmp-path', requires = { 'hrsh7th/nvim-cmp' } }
|
use { 'hrsh7th/cmp-path', requires = { 'hrsh7th/nvim-cmp' } }
|
||||||
|
@ -62,18 +67,19 @@ function M.setup()
|
||||||
|
|
||||||
|
|
||||||
use { 'jose-elias-alvarez/null-ls.nvim', requires = { 'nvim-lua/plenary.nvim' },
|
use { 'jose-elias-alvarez/null-ls.nvim', requires = { 'nvim-lua/plenary.nvim' },
|
||||||
config = require('configs.null-ls').setup }
|
config = function() require('configs.null-ls').setup() end
|
||||||
|
}
|
||||||
|
|
||||||
use { 'nvim-treesitter/nvim-treesitter',
|
use { 'nvim-treesitter/nvim-treesitter',
|
||||||
run = ':TSUpdate',
|
run = ':TSUpdate',
|
||||||
config = require('configs.treesitter').setup,
|
config = function() require('configs.treesitter').setup() end,
|
||||||
}
|
}
|
||||||
use 'nvim-treesitter/playground'
|
use 'nvim-treesitter/playground'
|
||||||
use({ 'yioneko/nvim-yati', requires = 'nvim-treesitter/nvim-treesitter', tag = 'legacy' })
|
use({ 'yioneko/nvim-yati', requires = 'nvim-treesitter/nvim-treesitter', tag = 'legacy' })
|
||||||
|
|
||||||
use { 'nvim-telescope/telescope.nvim',
|
use { 'nvim-telescope/telescope.nvim',
|
||||||
requires = { 'nvim-lua/popup.nvim', 'nvim-lua/plenary.nvim' },
|
requires = { 'nvim-lua/popup.nvim', 'nvim-lua/plenary.nvim' },
|
||||||
config = require('configs.telescope').setup,
|
config = function() require('configs.telescope').setup() end,
|
||||||
}
|
}
|
||||||
use { 'nvim-telescope/telescope-ui-select.nvim' }
|
use { 'nvim-telescope/telescope-ui-select.nvim' }
|
||||||
use { 'nvim-telescope/telescope-fzf-native.nvim',
|
use { 'nvim-telescope/telescope-fzf-native.nvim',
|
||||||
|
@ -85,7 +91,7 @@ function M.setup()
|
||||||
use { 'chrisbra/Colorizer', cmd = 'ColorToggle', keys = { 'n', '<space>c <Cmd>ColorToggle<CR>' } }
|
use { 'chrisbra/Colorizer', cmd = 'ColorToggle', keys = { 'n', '<space>c <Cmd>ColorToggle<CR>' } }
|
||||||
|
|
||||||
use { 'numToStr/FTerm.nvim',
|
use { 'numToStr/FTerm.nvim',
|
||||||
config = require('configs.fterm').setup
|
config = function() require('configs.fterm').setup() end,
|
||||||
}
|
}
|
||||||
|
|
||||||
use { 'lewis6991/gitsigns.nvim',
|
use { 'lewis6991/gitsigns.nvim',
|
||||||
|
@ -112,12 +118,6 @@ function M.setup()
|
||||||
|
|
||||||
use 'editorconfig/editorconfig-vim'
|
use 'editorconfig/editorconfig-vim'
|
||||||
|
|
||||||
use {
|
|
||||||
'kyazdani42/nvim-tree.lua',
|
|
||||||
config = require('configs.nvimtree'),
|
|
||||||
disable = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'nvim-neo-tree/neo-tree.nvim',
|
'nvim-neo-tree/neo-tree.nvim',
|
||||||
branch = 'v2.x',
|
branch = 'v2.x',
|
||||||
|
@ -126,7 +126,7 @@ function M.setup()
|
||||||
'kyazdani42/nvim-web-devicons', -- not strictly required, but recommended
|
'kyazdani42/nvim-web-devicons', -- not strictly required, but recommended
|
||||||
'MunifTanjim/nui.nvim',
|
'MunifTanjim/nui.nvim',
|
||||||
},
|
},
|
||||||
config = require('configs.neotree').setup,
|
config = function() require('configs.neotree').setup() end,
|
||||||
}
|
}
|
||||||
|
|
||||||
use {
|
use {
|
||||||
|
|
|
@ -28,7 +28,6 @@ function M.setup()
|
||||||
['ui-select'] = {
|
['ui-select'] = {
|
||||||
require('telescope.themes').get_dropdown {}
|
require('telescope.themes').get_dropdown {}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue