Added plugins
This commit is contained in:
parent
7af594fd31
commit
79005e5771
10 changed files with 141 additions and 8 deletions
1
lua/mundy/config.lua
Normal file
1
lua/mundy/config.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
vim.opt.conceallevel = 2
|
||||
9
lua/mundy/eyecandy.lua
Normal file
9
lua/mundy/eyecandy.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.signcolumn = "number"
|
||||
|
||||
function LineNumberColors()
|
||||
vim.api.nvim_set_hl(0, 'LineNrAbove', { fg='grey', bold=false }) -- '#F0DBAF'
|
||||
vim.api.nvim_set_hl(0, 'LineNr', { fg='white', bold=true })
|
||||
vim.api.nvim_set_hl(0, 'LineNrBelow', { fg='grey', bold=false })
|
||||
end
|
||||
3
lua/mundy/init.lua
Normal file
3
lua/mundy/init.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
require('mundy.remap')
|
||||
require('mundy.eyecandy')
|
||||
require('mundy.config')
|
||||
2
lua/mundy/remap.lua
Normal file
2
lua/mundy/remap.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
vim.keymap.set('n', '<leader>pv', vim.cmd.Ex,{ desc = 'Open Netrw Directory Listing' })
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue