mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-22 19:31:57 +00:00
Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
This commit is contained in:
47
dot_config/nvim/lua/plugins/extras.lua
Normal file
47
dot_config/nvim/lua/plugins/extras.lua
Normal file
@@ -0,0 +1,47 @@
|
||||
return { -- Non programming quality of life utilities go here
|
||||
{ -- Definitely need to add a plugin for quickly making notes in obsidian
|
||||
"epwalsh/obsidian.nvim",
|
||||
version = "*",
|
||||
cmd = "Obsidian",
|
||||
event = "VeryLazy",
|
||||
cond = function()
|
||||
return vim.fn.executable("obsidian") == 1
|
||||
end,
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-telescope/telescope.nvim",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
opts = {
|
||||
workspaces = {
|
||||
{
|
||||
name = "work",
|
||||
path = "~/Documents/Work_Notes/",
|
||||
},
|
||||
},
|
||||
completion = {
|
||||
nvim_cmp = true,
|
||||
min_chars = 2,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"MeanderingProgrammer/render-markdown.nvim",
|
||||
opts = {},
|
||||
ft = "markdown",
|
||||
dependencies = {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"echasnovski/mini.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
},
|
||||
{ -- A cheatsheet will always be useful until im a bit more familiar with vim
|
||||
"sudormrfbin/cheatsheet.nvim",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
"nvim-lua/popup.nvim",
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user