commit 517f17272d218efb5aa379fc7f35d2ed5a787258
parent 1d3ec936a1dbf774ec1f3ffc08f6fe712c72e68e
Author: MichaĆ M. Sapka <michal@sapka.me>
Date: Mon, 2 May 2022 16:10:38 +0200
More plugins
Diffstat:
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/nvim/init.lua b/nvim/init.lua
@@ -1,6 +1,5 @@
local set = vim.opt -- set options
local cmd = vim.api.nvim_command
-
-- General options
set.backup = false
set.swapfile = false
@@ -72,15 +71,30 @@ return packer.startup(function(use)
use "wbthomason/packer.nvim" -- Have packer manage itself
use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim
use "nvim-lua/plenary.nvim" -- Useful lua functions used ny lots of plugins
- use "overcache/NeoSolarized" -- Solarized theme for NeoVim
use "Mofiqul/dracula.nvim" -- Dracula theme
+ use {
+ 'nvim-lualine/lualine.nvim', requires = { 'kyazdani42/nvim-web-devicons', opt = true }
+ }
+ use {
+ 'lewis6991/gitsigns.nvim',
+ config = function()
+ require('gitsigns').setup() end
+ }
+ use {
+ 'kyazdani42/nvim-tree.lua',
+ requires = {
+ 'kyazdani42/nvim-web-devicons', -- optional, for file icon
+ }
+ }
+ use {
+ 'nvim-telescope/telescope.nvim',
+ requires = { {'nvim-lua/plenary.nvim'} }
+ }
+ vim.cmd('colorscheme dracula')
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins
if PACKER_BOOTSTRAP then
require("packer").sync()
end
- vim.cmd('colorscheme dracula')
end)
-
-