You've already forked dotfiles
feat: Adding new additions of:
- autopairs (trying again and kind of liking it) - render-markdown to render markdown in editor - twilight for dimming other lines - nvim-biscuits Changes to the zshrc settings to add location, color settings environment variables, some keybindings, universal aliases for coloration, etc. Adding a loader.enable to the start of init.lua for faster load times (need to benchmark this but it feels faster).
This commit is contained in:
18
nvim/lua/plugins/twilight.lua
Normal file
18
nvim/lua/plugins/twilight.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
return {
|
||||
'folke/twilight.nvim',
|
||||
config = function ()
|
||||
require('twilight').setup({
|
||||
dimming = {
|
||||
alpha = 0.3,
|
||||
},
|
||||
expand = {
|
||||
"function",
|
||||
"method",
|
||||
"table",
|
||||
}
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{ '<leader>f', ':Twilight<CR>' }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user