Org mode / quality of life stuff
This commit is contained in:
parent
332ff948ed
commit
150e21702e
12 changed files with 238 additions and 3 deletions
|
|
@ -9,6 +9,27 @@ return require("packer").startup(function(use)
|
|||
run = ":Neorg sync-parsers",
|
||||
}
|
||||
|
||||
-- Dashboard
|
||||
use {
|
||||
'glepnir/dashboard-nvim',
|
||||
event = 'VimEnter',
|
||||
requires = {'nvim-tree/nvim-web-devicons'},
|
||||
config = function()
|
||||
require('dashboard').setup {
|
||||
-- config
|
||||
}
|
||||
end,
|
||||
}
|
||||
|
||||
-- File manager in nvim
|
||||
use {
|
||||
"ptzz/lf.vim",
|
||||
requires = { {"voldikss/vim-floaterm"} },
|
||||
}
|
||||
|
||||
-- Zen mode
|
||||
use "folke/zen-mode.nvim"
|
||||
|
||||
-- Find files and strings
|
||||
use {
|
||||
"nvim-telescope/telescope.nvim", tag = "0.1.0",
|
||||
|
|
@ -20,6 +41,9 @@ return require("packer").startup(function(use)
|
|||
|
||||
-- Themes
|
||||
use "aktersnurra/no-clown-fiesta.nvim"
|
||||
use "ellisonleao/gruvbox.nvim"
|
||||
use { 'rose-pine/neovim', as = 'rose-pine' }
|
||||
use 'Mofiqul/vscode.nvim'
|
||||
|
||||
-- Referencing a hex code highlights it in that color
|
||||
use "lilydjwg/colorizer"
|
||||
|
|
@ -27,6 +51,9 @@ return require("packer").startup(function(use)
|
|||
-- Relative line numbers disappear when not actively in buffer
|
||||
use "jeffkreeftmeijer/vim-numbertoggle"
|
||||
|
||||
-- History visualizer
|
||||
use "mbbill/undotree"
|
||||
|
||||
-- See function signatures when typing them
|
||||
use "ray-x/lsp_signature.nvim"
|
||||
require "lsp_signature".setup({})
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
vim.opt.guicursor = ""
|
||||
-- vim.opt.guicursor = ""
|
||||
|
||||
vim.opt.nu = true
|
||||
vim.opt.relativenumber = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue