idk
This commit is contained in:
parent
3f57c580d1
commit
66eab26125
2 changed files with 13 additions and 4 deletions
7
init.lua
7
init.lua
|
@ -12,3 +12,10 @@ require('lualine').setup {
|
||||||
|
|
||||||
-- Comment
|
-- Comment
|
||||||
require('Comment').setup()
|
require('Comment').setup()
|
||||||
|
|
||||||
|
-- Mason
|
||||||
|
require("mason").setup()
|
||||||
|
require("mason-lspconfig").setup({
|
||||||
|
ensure_installed = { "rust_analyzer", "pylsp" },
|
||||||
|
automatic_installation = true,
|
||||||
|
})
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
require('packer').startup(function(use)
|
require('packer').startup(function(use)
|
||||||
use 'wbthomason/packer.nvim'
|
use 'wbthomason/packer.nvim'
|
||||||
use 'numToStr/Comment.nvim'
|
use 'neovim/lsp'
|
||||||
use 'neovim/nvim-lspconfig'
|
use 'neovim/nvim-lspconfig'
|
||||||
use 'glepnir/dashboard-nvim'
|
|
||||||
use 'joshdick/onedark.vim'
|
|
||||||
use 'jiangmiao/auto-pairs'
|
|
||||||
use { 'nvim-treesitter/nvim-treesitter', run = function()
|
use { 'nvim-treesitter/nvim-treesitter', run = function()
|
||||||
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
||||||
ts_update()
|
ts_update()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
use 'williamboman/mason.nvim'
|
||||||
|
use 'williamboman/mason-lspconfig.nvim'
|
||||||
|
use 'hrsh7th/nvim-cmp'
|
||||||
|
use 'hrsh7th/cmp-nvim-lsp'
|
||||||
use { 'nvim-lualine/lualine.nvim', requires = { 'kyazdani42/nvim-web-devicons', opt = true } }
|
use { 'nvim-lualine/lualine.nvim', requires = { 'kyazdani42/nvim-web-devicons', opt = true } }
|
||||||
|
use 'numToStr/Comment.nvim'
|
||||||
|
|
||||||
-- Automatically set up your configuration after cloning packer.nvim
|
-- Automatically set up your configuration after cloning packer.nvim
|
||||||
-- Put this at the end after all plugins
|
-- Put this at the end after all plugins
|
||||||
|
|
Loading…
Reference in a new issue