This commit is contained in:
2023-12-03 01:32:15 +00:00
parent 56748d35b1
commit 051f5fbb24
11 changed files with 225 additions and 0 deletions

1
lua/409/init.lua Normal file
View File

@@ -0,0 +1 @@
require('409.remap')

31
lua/409/packer.lua Normal file
View File

@@ -0,0 +1,31 @@
vim.cmd.packadd('packer.nvim')
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use 'nvim-lua/plenary.nvim'
use {
'nvim-telescope/telescope.nvim', tag = '0.1.4',
requires = { {'nvim-lua/plenary.nvim'} }
}
use({
'rose-pine/neovim',
as = 'rose-pine',
config = function()
vim.cmd('colorscheme rose-pine')
end
})
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
use{
'ThePrimeagen/harpoon',
branch = 'harpoon2',
requires = { { 'nvim-lua/plenary.nvim' } }
}
use('mbbill/undotree')
use('tpope/vim-fugitive')
end)

2
lua/409/remap.lua Normal file
View File

@@ -0,0 +1,2 @@
vim.g.mapleader = " "
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)