Compare commits
10 Commits
203d2f5243
...
5f6957f137
Author | SHA1 | Date |
---|---|---|
Zynh Ludwig | 5f6957f137 | |
Zynh Ludwig | 521a481e71 | |
Zynh Ludwig | 4388bdef04 | |
Zynh Ludwig | 3668419abd | |
Zynh Ludwig | b754c49669 | |
Zynh Ludwig | a627b96d61 | |
Zynh Ludwig | 57decb1037 | |
Zynh0722 | 46958142ff | |
Zynh Ludwig | 306d2b2361 | |
Zynh Ludwig | 3133e85b0b |
|
@ -1,3 +1,4 @@
|
|||
lazy-lock.json
|
||||
.DS_Store
|
||||
**/packer_compiled.lua
|
||||
parsers.lua
|
||||
|
|
1
init.lua
1
init.lua
|
@ -1 +0,0 @@
|
|||
/nix/store/hqcbiwnv1298ak69qhdq58ppy47vja9c-home-manager-files/.config/nvim/init.lua
|
|
@ -0,0 +1,4 @@
|
|||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||
require("config.lazy")
|
||||
|
||||
local ok, mymod = pcall(require, "parsers")
|
|
@ -3,6 +3,7 @@
|
|||
"lazyvim.plugins.extras.coding.mini-surround",
|
||||
"lazyvim.plugins.extras.dap.core",
|
||||
"lazyvim.plugins.extras.editor.aerial",
|
||||
"lazyvim.plugins.extras.editor.aerial",
|
||||
"lazyvim.plugins.extras.editor.harpoon2",
|
||||
"lazyvim.plugins.extras.editor.navic",
|
||||
"lazyvim.plugins.extras.formatting.prettier",
|
||||
|
@ -10,15 +11,14 @@
|
|||
"lazyvim.plugins.extras.lang.elixir",
|
||||
"lazyvim.plugins.extras.lang.go",
|
||||
"lazyvim.plugins.extras.lang.java",
|
||||
"lazyvim.plugins.extras.lang.nix",
|
||||
"lazyvim.plugins.extras.lang.omnisharp",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.tailwind",
|
||||
"lazyvim.plugins.extras.lang.typescript",
|
||||
"lazyvim.plugins.extras.editor.aerial"
|
||||
"lazyvim.plugins.extras.lang.typescript"
|
||||
],
|
||||
"news": {
|
||||
"NEWS.md": "6077"
|
||||
},
|
||||
"version": 6
|
||||
}
|
||||
|
||||
|
|
|
@ -16,16 +16,20 @@ local function map(mode, lhs, rhs, opts)
|
|||
end
|
||||
end
|
||||
|
||||
map(
|
||||
"n",
|
||||
"<C-u>",
|
||||
"<Cmd>lua vim.cmd('normal! <C-u>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
{ desc = "Centered Half Page Up", remap = true }
|
||||
)
|
||||
map(
|
||||
"n",
|
||||
"<C-d>",
|
||||
"<Cmd>lua vim.cmd('normal! <C-d>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
{ desc = "Centered Half Page Down", remap = true }
|
||||
)
|
||||
vim.keymap.set("n", "<C-d>", "<C-d>zz", { desc = "Center cursor after moving down half-page" })
|
||||
vim.keymap.set("n", "<C-u>", "<C-u>zz", { desc = "Center cursor after moving up half-page" })
|
||||
|
||||
-- map(
|
||||
-- "n",
|
||||
-- "<C-u>",
|
||||
-- "<Cmd>lua vim.cmd('normal! <C-u>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
-- { desc = "Centered Half Page Up", remap = true }
|
||||
-- )
|
||||
-- map(
|
||||
-- "n",
|
||||
-- "<C-d>",
|
||||
-- "<Cmd>lua vim.cmd('normal! <C-d>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
-- { desc = "Centered Half Page Down", remap = true }
|
||||
-- )
|
||||
|
||||
map("n", "<leader>u<Tab>", ":set list!<CR>", { desc = "Toggle list (Whitespace display)", remap = true })
|
||||
|
|
|
@ -4,16 +4,14 @@
|
|||
|
||||
vim.o.conceallevel = 2
|
||||
|
||||
if vim.loader then
|
||||
vim.loader.enable()
|
||||
end
|
||||
|
||||
vim.filetype.add({
|
||||
extension = {
|
||||
mdx = "markdown",
|
||||
},
|
||||
})
|
||||
|
||||
vim.g.editorconfig = true
|
||||
|
||||
vim.cmd([[
|
||||
filetype plugin on
|
||||
filetype indent off
|
||||
|
|
|
@ -15,7 +15,6 @@ return {
|
|||
},
|
||||
{
|
||||
"nyoom-engineering/oxocarbon.nvim",
|
||||
event = "VeryLazy",
|
||||
},
|
||||
|
||||
-- Configure LazyVim to load rose-pine
|
||||
|
|
|
@ -3,6 +3,7 @@ return {
|
|||
opts = {
|
||||
formatters_by_ft = {
|
||||
sql = { "sql_formatter" },
|
||||
-- nix = { "nixpgs_fmt" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ return {
|
|||
opts = {
|
||||
-- -@type lspconfig.options
|
||||
servers = {
|
||||
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||||
nil_ls = {
|
||||
mason = false,
|
||||
settings = {
|
||||
|
@ -20,34 +19,34 @@ return {
|
|||
lua_ls = {
|
||||
mason = false,
|
||||
},
|
||||
rust_analyzer = {
|
||||
mason = false,
|
||||
-- settings = {
|
||||
-- ["rust-analyzer"] = {
|
||||
-- -- rustfmt = {
|
||||
-- -- overrideCommand = { "leptosfmt", "--stdin", "--rustfmt" },
|
||||
-- -- },
|
||||
-- imports = {
|
||||
-- granularity = {
|
||||
-- group = "module",
|
||||
-- },
|
||||
-- },
|
||||
-- cargo = {
|
||||
-- buildScripts = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- },
|
||||
-- files = {
|
||||
-- excludeDirs = {
|
||||
-- "pe-template",
|
||||
-- },
|
||||
-- },
|
||||
-- procMacro = {
|
||||
-- enable = true,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
},
|
||||
-- rust_analyzer = {
|
||||
-- mason = false,
|
||||
-- settings = {
|
||||
-- ["rust-analyzer"] = {
|
||||
-- -- rustfmt = {
|
||||
-- -- overrideCommand = { "leptosfmt", "--stdin", "--rustfmt" },
|
||||
-- -- },
|
||||
-- imports = {
|
||||
-- granularity = {
|
||||
-- group = "module",
|
||||
-- },
|
||||
-- },
|
||||
-- cargo = {
|
||||
-- buildScripts = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- },
|
||||
-- files = {
|
||||
-- excludeDirs = {
|
||||
-- "pe-template",
|
||||
-- },
|
||||
-- },
|
||||
-- procMacro = {
|
||||
-- enable = true,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
tailwindcss = {
|
||||
init_options = {
|
||||
userLanguages = {
|
||||
|
|
Loading…
Reference in New Issue