Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Minimal, blazingly fast, and pure Lua based Neovim configuration for my work as DevOps/Cloud Engineer with batteries included for Python, Golang, and, of course, YAML

License

NotificationsYou must be signed in to change notification settings

Allaman/nvim

Repository files navigation

NeovimLast commitGithub issuesCI StatusLicense

Sewjp.png

Sewj4.png

README WIP

Terminal:ghostty

Font:Comic Code Ligatures

Neovim Theme:tokyonight.nvim

Customization

⚠️ This is primarly my personal config

If you want to use my config there is the./lua/vnext/extra/ folder that is loaded by lazy.nvim. The LazySpecs in this folder are merged with the "default" LazySpecs in the./lua/vnext/plugins/ folder. Some examples you can do:

Disable a plugin:

return {  {"Bekaboo/dropbar.nvim",enabled=false,  },}

Add new options to a plugin:

return {  {"echasnovski/mini.surround",opts= {search_method='nearest',    },  }}

Overwrite options of a plugin:

return {  {"L3MON4D3/LuaSnip",opts= {-- define your own snippets foldersnippets_path= {vim.fn.expand("~/mySnips") },    },  },}

Change keys of a plugin:

return {  {"MagicDuck/grug-far.nvim",keys= {-- stylua: ignore start      {"<leader>R",hidden=true },      {"<leader>RG","<cmd>GrugFar<cr>",desc="Open"},      {"<leader>Rg","<cmd>lua require('grug-far').open({ prefills = { paths = vim.fn.expand('%') } })<cr>",desc="Open (Limit to current file)"},      {"<leader>Rw","<cmd>lua require('grug-far').open({ prefills = { search = vim.fn.expand('<cword>') } })<cr>",desc="Search word under cursor", },      {"<leader>Rs",mode="v","<cmd>lua require('grug-far').with_visual_selection({ prefills = { paths = vim.fn.expand('%') } })<cr>",desc="Search selection", },      {"<leader>X","",desc="Search & Replace"},      {"<leader>XG","<cmd>GrugFar<cr>",desc="Open"},      {"<leader>Xg","<cmd>lua require('grug-far').open({ prefills = { paths = vim.fn.expand('%') } })<cr>",desc="Open (Limit to current file)"},      {"<leader>Xw","<cmd>lua require('grug-far').open({ prefills = { search = vim.fn.expand('<cword>') } })<cr>",desc="Search word under cursor", },      {"<leader>Xs",mode="v","<cmd>lua require('grug-far').with_visual_selection({ prefills = { paths = vim.fn.expand('%') } })<cr>",desc="Search selection", },-- stylua: ignore end    },  },}

Check out myblog post to learn more about the reasons behind this big change. You can find the previous version in thev1 branch.

About

Minimal, blazingly fast, and pure Lua based Neovim configuration for my work as DevOps/Cloud Engineer with batteries included for Python, Golang, and, of course, YAML

Topics

Resources

License

Stars

Watchers

Forks


[8]ページ先頭

©2009-2025 Movatter.jp