Compare commits
2 Commits
c75b77b0d6
...
3bc1cd81f6
Author | SHA1 | Date | |
---|---|---|---|
3bc1cd81f6 | |||
b9d737761b |
@ -12,12 +12,6 @@ return {
|
|||||||
-- Personal config
|
-- Personal config
|
||||||
--
|
--
|
||||||
|
|
||||||
-- Packs
|
|
||||||
{ import = "astrocommunity.pack.bash" },
|
|
||||||
{ import = "astrocommunity.pack.json" },
|
|
||||||
{ import = "astrocommunity.pack.yaml" },
|
|
||||||
{ import = "astrocommunity.pack.toml" },
|
|
||||||
-- { import = "astrocommunity.pack.markdown" },
|
|
||||||
-- { import = "astrocommunity.pack.ansible" },
|
-- { import = "astrocommunity.pack.ansible" },
|
||||||
-- { import = "astrocommunity.pack.docker" },
|
-- { import = "astrocommunity.pack.docker" },
|
||||||
-- { import = "astrocommunity.pack.helm" },
|
-- { import = "astrocommunity.pack.helm" },
|
||||||
@ -26,17 +20,30 @@ return {
|
|||||||
-- { import = "astrocommunity.pack.java" },
|
-- { import = "astrocommunity.pack.java" },
|
||||||
-- { import = "astrocommunity.pack.html-css" },
|
-- { import = "astrocommunity.pack.html-css" },
|
||||||
-- { import = "astrocommunity.pack.angular" },
|
-- { import = "astrocommunity.pack.angular" },
|
||||||
|
-- Packs
|
||||||
|
{ import = "astrocommunity.pack.bash" },
|
||||||
|
{ import = "astrocommunity.pack.toml" },
|
||||||
|
{ import = "astrocommunity.pack.yaml" },
|
||||||
|
{ import = "astrocommunity.pack.json" },
|
||||||
|
{ import = "astrocommunity.pack.markdown" },
|
||||||
|
|
||||||
|
-- Recipes
|
||||||
|
{ import = "astrocommunity.recipes.heirline-mode-text-statusline" },
|
||||||
|
{ import = "astrocommunity.recipes.cache-colorscheme" },
|
||||||
|
{ import = "astrocommunity.recipes.neo-tree-dark" },
|
||||||
|
-- { import = "astrocommunity.recipes.disable-tabline" },
|
||||||
|
|
||||||
-- Individual plugins (misc)
|
-- Individual plugins (misc)
|
||||||
|
{ import = "astrocommunity.diagnostics.trouble-nvim" },
|
||||||
-- { import = "astrocommunity.bars-and-lines.smartcolumn-nvim" },
|
-- { import = "astrocommunity.bars-and-lines.smartcolumn-nvim" },
|
||||||
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
||||||
{ import = "astrocommunity.diagnostics.trouble-nvim" },
|
|
||||||
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" },
|
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" },
|
||||||
{ import = "astrocommunity.editing-support.nvim-devdocs" },
|
{ import = "astrocommunity.editing-support.nvim-devdocs" },
|
||||||
-- { import = "astrocommunity.editing-support.chatgpt-nvim" },
|
-- { import = "astrocommunity.editing-support.chatgpt-nvim" },
|
||||||
{ import = "astrocommunity.indent.indent-rainbowline" },
|
{ import = "astrocommunity.indent.indent-rainbowline" },
|
||||||
{ import = "astrocommunity.programming-language-support.rest-nvim" },
|
-- { import = "astrocommunity.programming-language-support.rest-nvim" },
|
||||||
{ import = "astrocommunity.project.project-nvim" },
|
-- { import = "astrocommunity.project.project-nvim" },
|
||||||
|
{ import = "astrocommunity.file-explorer.telescope-file-browser-nvim" },
|
||||||
|
|
||||||
-- Individual plugins (colorschemes)
|
-- Individual plugins (colorschemes)
|
||||||
{ import = "astrocommunity.colorscheme.vscode-nvim" },
|
{ import = "astrocommunity.colorscheme.vscode-nvim" },
|
||||||
@ -57,7 +64,7 @@ return {
|
|||||||
-- end
|
-- end
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
--
|
|
||||||
-- Now provided by core
|
-- Now provided by core
|
||||||
-- { import = "astrocommunity.bars-and-lines.vim-illuminate" },
|
-- { import = "astrocommunity.bars-and-lines.vim-illuminate" },
|
||||||
-- { import = "astrocommunity.editing-support.todo-comments-nvim" },
|
-- { import = "astrocommunity.editing-support.todo-comments-nvim" },
|
||||||
|
6
lua/custom/keymaps.lua
Normal file
6
lua/custom/keymaps.lua
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--
|
||||||
|
-- Keymaps
|
||||||
|
--
|
||||||
|
|
||||||
|
-- Selected (visual) pasted text
|
||||||
|
vim.keymap.set("n", "gp", "`[v`]")
|
@ -2,6 +2,9 @@
|
|||||||
-- things like custom filetypes. This just pure lua so anything that doesn't
|
-- things like custom filetypes. This just pure lua so anything that doesn't
|
||||||
-- fit in the normal config locations above can go here
|
-- fit in the normal config locations above can go here
|
||||||
|
|
||||||
|
-- Set up custom keymaps
|
||||||
|
require("custom.keymaps")
|
||||||
|
|
||||||
-- Set up custom autocmds
|
-- Set up custom autocmds
|
||||||
require("custom.autocmds")
|
require("custom.autocmds")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user