Started on NeoVim config and updated install script

This commit is contained in:
2023-03-01 22:02:02 +00:00
parent cee5d021c3
commit 927ed0ff5c
5 changed files with 53 additions and 3 deletions

View File

@ -0,0 +1 @@
require("luke-else.packer")

View File

@ -0,0 +1,21 @@
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
use {
'nvim-telescope/telescope.nvim', tag = '0.1.0',
-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}
use { -- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end
}
end)