Compare commits
40 Commits
ba80d54a52
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c3806dfd61 | |||
| 1b250f4500 | |||
| 0ef267297e | |||
| 17c19d3452 | |||
| da91033d53 | |||
| 1c6f0a0e46 | |||
| 1c2b5f8a0e | |||
| db120ff9e3 | |||
| 35ea810bd8 | |||
| 379881887c | |||
| ac6b9739a5 | |||
| 199c37fe89 | |||
| 6fabafacf1 | |||
| 3678a14632 | |||
| 35fb1cfc59 | |||
| 4d26049347 | |||
| 7897d5169f | |||
| 74fa81f857 | |||
| baf089a8e5 | |||
| f23aa495a4 | |||
| af9c944768 | |||
| 165d3ccc20 | |||
| 8b3598b821 | |||
| a9c8c0bef7 | |||
| 5243e672c8 | |||
| 6bbeab55d1 | |||
| 3b0f8b92bb | |||
| a40c9588a0 | |||
| 683215d09d | |||
| 453e599a57 | |||
| 02721b097e | |||
| 26c53fe210 | |||
| 7521292d38 | |||
| c0a6c5848a | |||
| e41cd21a1d | |||
| 8ceabee7cd | |||
| 09a4e3e322 | |||
| dbcab8ada3 | |||
| d66b0a8fb5 | |||
| cfe6ea12f7 |
5
Makefile
5
Makefile
@@ -1,10 +1,10 @@
|
|||||||
# prefer this if stow is available
|
# prefer this if stow is available
|
||||||
.PHONY: stow unstow
|
.PHONY: stow unstow
|
||||||
stow:
|
stow:
|
||||||
stow nvim
|
stow nvim ghostty
|
||||||
|
|
||||||
unstow:
|
unstow:
|
||||||
stow -D nvim
|
stow -D nvim ghostty
|
||||||
|
|
||||||
LN := ln -svf
|
LN := ln -svf
|
||||||
LNDIR := ln -sv
|
LNDIR := ln -sv
|
||||||
@@ -13,6 +13,7 @@ DOTFILES_DIR := $(shell pwd)
|
|||||||
TARGET_DIR := $(HOME)
|
TARGET_DIR := $(HOME)
|
||||||
|
|
||||||
# if stow is not available, symlink configs instead
|
# if stow is not available, symlink configs instead
|
||||||
|
# this is currently outdated
|
||||||
.PHONY: link unlink
|
.PHONY: link unlink
|
||||||
link: nvim
|
link: nvim
|
||||||
|
|
||||||
|
|||||||
13
ghostty/.config/ghostty/config.ghostty
Normal file
13
ghostty/.config/ghostty/config.ghostty
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
font-feature = -calt, -liga, -dlig
|
||||||
|
|
||||||
|
# Use Alt for multi-teriminal management
|
||||||
|
keybind = ctrl+shift+t=unbind
|
||||||
|
keybind = alt+t=new_tab
|
||||||
|
keybind = ctrl+shift+w=unbind
|
||||||
|
keybind = alt+w=close_tab:this
|
||||||
|
keybind = ctrl+enter=unbind
|
||||||
|
keybind = alt+enter=toggle_fullscreen
|
||||||
|
|
||||||
|
# Disable touchpad horizontal-swipe tab switching.
|
||||||
|
# Will come in next version
|
||||||
|
# gtk-horizontal-tab-scroll = false
|
||||||
@@ -5,6 +5,8 @@ Inspirations:
|
|||||||
- [nolan](https://github.com/Hrumble/sneaky-nvim-config)
|
- [nolan](https://github.com/Hrumble/sneaky-nvim-config)
|
||||||
- [mats](https://github.com/BeerB34r/dotfiles)
|
- [mats](https://github.com/BeerB34r/dotfiles)
|
||||||
|
|
||||||
|
[Great guide on vim.pack](https://echasnovski.com/blog/2026-03-13-a-guide-to-vim-pack#delete)
|
||||||
|
|
||||||
# Neovim Notes
|
# Neovim Notes
|
||||||
|
|
||||||
See custom keymaps with short descriptions with `<leader><leader>h`.
|
See custom keymaps with short descriptions with `<leader><leader>h`.
|
||||||
@@ -37,6 +39,19 @@ Telescope shortcuts:
|
|||||||
- `<leader>fb` list buffers
|
- `<leader>fb` list buffers
|
||||||
- `<leader>fh` browse help tags
|
- `<leader>fh` browse help tags
|
||||||
|
|
||||||
|
Git shortcuts:
|
||||||
|
|
||||||
|
- `:Git` to run commands directly (`:Git status`, `:Git log --oneline`)
|
||||||
|
- `<leader>lg` open LazyGit
|
||||||
|
- `<leader>dv` open Diffview
|
||||||
|
- `<leader>dc` close Diffview
|
||||||
|
|
||||||
|
Toggle shortcuts:
|
||||||
|
|
||||||
|
- `<leader>tw` toggle soft wrap
|
||||||
|
- `<leader>ti` toggle inline diagnostics
|
||||||
|
- `<leader>tv` toggle virtual diagnostics
|
||||||
|
|
||||||
Oil usage:
|
Oil usage:
|
||||||
|
|
||||||
- `<leader>dl` opens the file browser
|
- `<leader>dl` opens the file browser
|
||||||
@@ -46,17 +61,14 @@ Oil usage:
|
|||||||
- `<A-h>` also goes to the parent directory
|
- `<A-h>` also goes to the parent directory
|
||||||
- `<A-l>` opens the selected file or enters the selected directory
|
- `<A-l>` opens the selected file or enters the selected directory
|
||||||
- `<C-p>` previews the selected entry
|
- `<C-p>` previews the selected entry
|
||||||
- `go` opens the file in external viewer
|
- `gx` opens the file in external viewer
|
||||||
|
|
||||||
## Window Navigation
|
## Window Navigation
|
||||||
|
|
||||||
Move between windows with:
|
Move between windows with:
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
<C-h> left
|
<C-hjkl>
|
||||||
<C-j> down
|
|
||||||
<C-k> up
|
|
||||||
<C-l> right
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Cycle through windows:
|
Cycle through windows:
|
||||||
@@ -67,18 +79,16 @@ Cycle through windows:
|
|||||||
|
|
||||||
## Terminal
|
## Terminal
|
||||||
|
|
||||||
Leave terminal mode and return to normal mode:
|
Two options to leave terminal mode and return to normal mode:
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
<Esc>
|
<\\-Esc>
|
||||||
|
|
||||||
|
<C-Esc>
|
||||||
```
|
```
|
||||||
|
|
||||||
## LSP
|
## LSP
|
||||||
|
|
||||||
Mason is installed through `vim.pack` together with `mason-lspconfig.nvim` and `nvim-lspconfig`.
|
|
||||||
|
|
||||||
This config automatically installs and enables the managed language servers on first start. The current managed set is `bashls`, `clangd`, `jsonls`, `lua_ls`, `marksman`, `taplo`, `ts_ls`, and `yamlls`.
|
|
||||||
|
|
||||||
Useful Mason commands:
|
Useful Mason commands:
|
||||||
|
|
||||||
```vim
|
```vim
|
||||||
@@ -87,29 +97,29 @@ Useful Mason commands:
|
|||||||
:checkhealth mason
|
:checkhealth mason
|
||||||
```
|
```
|
||||||
|
|
||||||
`ts_ls` provides TypeScript and JavaScript language server support after Mason installs `typescript-language-server`.
|
Useful LSP commands:
|
||||||
|
|
||||||
When an LSP server is attached to the current buffer:
|
|
||||||
|
|
||||||
- `gd` go to definition
|
- `gd` go to definition
|
||||||
- `gD` go to declaration
|
- `gD` go to declaration
|
||||||
- `grd` list references
|
- `grd` list references
|
||||||
- `grn` rename symbol
|
- `grn` rename symbol
|
||||||
- `<C-Space>` trigger completion
|
- `<leader>ca` show code actions
|
||||||
|
- `<leader>cf` apply quick fixes
|
||||||
|
- `<leader>cs` show source actions
|
||||||
|
|
||||||
Diagnostics:
|
Diagnostics:
|
||||||
|
|
||||||
- `g.` open diagnostic float
|
- `g.` open diagnostic float
|
||||||
- `gl` send diagnostics to the location list
|
- `gl` send diagnostics to the location list
|
||||||
- `gle` display error information
|
- `gld` display diagnostic information
|
||||||
- `gie` toggle inline errors
|
- `<leader>ti` toggle inline diagnostics
|
||||||
- `gve` toggle virtual line errors
|
- `<leader>tv` toggle virtual diagnostics
|
||||||
- `g]` jump to next error
|
- `]g` jump to next warning or error
|
||||||
- `g[` jump to previous error
|
- `[g` jump to previous warning or error
|
||||||
|
|
||||||
## Tree-sitter
|
## Tree-sitter
|
||||||
|
|
||||||
Tree-sitter is managed with `nvim-treesitter` via `vim.pack`. `tree-sitter-cli` and a C compiler is required to be installed.
|
`tree-sitter-cli` and a C compiler is required to be installed.
|
||||||
|
|
||||||
Useful commands:
|
Useful commands:
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
vim.opt_local.textwidth = 80
|
local o = vim.opt_local
|
||||||
|
|
||||||
|
o.textwidth = 80
|
||||||
|
o.expandtab = false
|
||||||
|
|||||||
1
nvim/.config/nvim/after/ftplugin/markdown.lua
Normal file
1
nvim/.config/nvim/after/ftplugin/markdown.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
require("romanzy.custom.wrap").toggle(true)
|
||||||
3
nvim/.config/nvim/after/ftplugin/python.lua
Normal file
3
nvim/.config/nvim/after/ftplugin/python.lua
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
local o = vim.opt_local
|
||||||
|
|
||||||
|
o.expandtab = false
|
||||||
1
nvim/.config/nvim/after/ftplugin/text.lua
Normal file
1
nvim/.config/nvim/after/ftplugin/text.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
require("romanzy.custom.wrap").toggle(true)
|
||||||
1
nvim/.config/nvim/after/ftplugin/txt.lua
Normal file
1
nvim/.config/nvim/after/ftplugin/txt.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
require("romanzy.custom.wrap").toggle(true)
|
||||||
1
nvim/.config/nvim/after/ftplugin/typst.lua
Normal file
1
nvim/.config/nvim/after/ftplugin/typst.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
require("romanzy.custom.wrap").toggle(true)
|
||||||
@@ -2,41 +2,23 @@ local uc = vim.api.nvim_create_user_command
|
|||||||
local ac = vim.api.nvim_create_autocmd
|
local ac = vim.api.nvim_create_autocmd
|
||||||
local aug = vim.api.nvim_create_augroup
|
local aug = vim.api.nvim_create_augroup
|
||||||
|
|
||||||
-- User commands
|
|
||||||
uc("W", "w|e", { desc = "write file then refresh buffer" })
|
uc("W", "w|e", { desc = "write file then refresh buffer" })
|
||||||
|
|
||||||
-- Auto commands
|
|
||||||
ac("TextYankPost", {
|
ac("TextYankPost", {
|
||||||
desc = "Highlight when yanking text",
|
desc = "Highlight when yanking text",
|
||||||
group = aug("highlight-yank", { clear = true }),
|
group = aug("highlight-yank", { clear = true }),
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.highlight.on_yank()
|
vim.highlight.on_yank()
|
||||||
end,
|
end,
|
||||||
})
|
|
||||||
ac("LspAttach", {
|
|
||||||
desc = "Notify user about attached LSP clients",
|
|
||||||
group = aug("LSPOnAttach", { clear = true }),
|
|
||||||
callback = function(event)
|
|
||||||
local client = vim.lsp.get_client_by_id(event.data.client_id)
|
|
||||||
if client then
|
|
||||||
vim.notify(client.name .. " attached", vim.log.levels.INFO, {})
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
-- ac("LspAttach", {
|
-- ac("LspAttach", {
|
||||||
-- group = aug("lsp_attach_disable_ruff_hover", { clear = true }),
|
-- desc = "Notify user about attached LSP clients",
|
||||||
-- callback = function(args)
|
-- group = aug("LSPOnAttach", { clear = true }),
|
||||||
-- local client = vim.lsp.get_client_by_id(args.data.client_id)
|
-- callback = function(event)
|
||||||
-- if client == nil then
|
-- local client = vim.lsp.get_client_by_id(event.data.client_id)
|
||||||
-- return
|
-- if client then
|
||||||
-- end
|
-- vim.notify(client.name .. " attached", vim.log.levels.INFO, {})
|
||||||
-- if client.name == "ruff" then
|
-- end
|
||||||
-- client.server_capabilities.hoverProvider = false
|
-- end,
|
||||||
-- end
|
|
||||||
-- end,
|
|
||||||
-- desc = "LSP: Disable hover capabilties for ruff",
|
|
||||||
-- })
|
-- })
|
||||||
|
|
||||||
|
|
||||||
-- Only show the invisible characters inside the code editing buffers
|
|
||||||
vim.cmd([[autocmd BufWinEnter * if &buftype != '' | setlocal nolist | endif]])
|
|
||||||
|
|||||||
24
nvim/.config/nvim/lua/romanzy/custom/tabline.lua
Normal file
24
nvim/.config/nvim/lua/romanzy/custom/tabline.lua
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.render()
|
||||||
|
local current = vim.fn.tabpagenr()
|
||||||
|
local last = vim.fn.tabpagenr("$")
|
||||||
|
local parts = {}
|
||||||
|
|
||||||
|
for index = 1, last do
|
||||||
|
parts[#parts + 1] = index == current and "%#TabLineSel#" or "%#TabLine#"
|
||||||
|
parts[#parts + 1] = "%" .. index .. "T"
|
||||||
|
parts[#parts + 1] = " " .. index .. " "
|
||||||
|
end
|
||||||
|
|
||||||
|
parts[#parts + 1] = "%#TabLineFill#%T"
|
||||||
|
|
||||||
|
return table.concat(parts)
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
_G.RomanzyTabline = M.render
|
||||||
|
vim.opt.tabline = "%!v:lua.RomanzyTabline()"
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
17
nvim/.config/nvim/lua/romanzy/custom/wrap.lua
Normal file
17
nvim/.config/nvim/lua/romanzy/custom/wrap.lua
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
--- Toggle wrapping, or force it to the provided state.
|
||||||
|
--- @param enabled? boolean
|
||||||
|
function M.toggle(enabled)
|
||||||
|
if enabled == nil then
|
||||||
|
enabled = not vim.wo.wrap
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.wo.wrap = enabled
|
||||||
|
vim.wo.linebreak = enabled
|
||||||
|
vim.wo.breakindent = enabled
|
||||||
|
vim.bo.textwidth = enabled and 80 or 0
|
||||||
|
vim.bo.wrapmargin = 0
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
@@ -25,12 +25,16 @@ map("n", "<leader>ff", telescope_picker("find_files"), { desc = "find files" })
|
|||||||
map("n", "<leader>fg", telescope_picker("live_grep"), { desc = "live grep" })
|
map("n", "<leader>fg", telescope_picker("live_grep"), { desc = "live grep" })
|
||||||
map("n", "<leader>fb", telescope_picker("buffers"), { desc = "find buffers" })
|
map("n", "<leader>fb", telescope_picker("buffers"), { desc = "find buffers" })
|
||||||
map("n", "<leader>fh", telescope_picker("help_tags"), { desc = "help tags" })
|
map("n", "<leader>fh", telescope_picker("help_tags"), { desc = "help tags" })
|
||||||
|
map("n", "<leader>lg", "<Cmd>LazyGit<CR>", { desc = "open lazygit" })
|
||||||
|
map("n", "<leader>dv", "<Cmd>DiffviewOpen<CR>", { desc = "open diffview" })
|
||||||
|
map("n", "<leader>dc", "<Cmd>DiffviewClose<CR>", { desc = "close diffview" })
|
||||||
|
map("n", "<leader>tw", require("romanzy.custom.wrap").toggle, { desc = "toggle soft wrap" })
|
||||||
|
|
||||||
-- map("n", "<leader>s", ":set spell!<CR>", { desc = "toggle spell" })
|
|
||||||
map("n", "<leader>sv", "<Cmd>vs<CR>", { desc = "split vertical" })
|
map("n", "<leader>sv", "<Cmd>vs<CR>", { desc = "split vertical" })
|
||||||
map("n", "<leader>sh", "<Cmd>sp<CR>", { desc = "split horizontal" })
|
map("n", "<leader>sh", "<Cmd>sp<CR>", { desc = "split horizontal" })
|
||||||
map("n", "<leader>se", "<C-w>=", { desc = "equalize splits" })
|
map("n", "<leader>se", "<C-w>=", { desc = "equalize splits" })
|
||||||
map("n", "<leader>sc", "<C-w>c", { desc = "close split" })
|
map("n", "<leader>sc", "<C-w>c", { desc = "close split" })
|
||||||
|
|
||||||
map("n", "<leader>rh", "<Cmd>vertical resize -10<CR>", { desc = "make buffer narrower" })
|
map("n", "<leader>rh", "<Cmd>vertical resize -10<CR>", { desc = "make buffer narrower" })
|
||||||
map("n", "<leader>rl", "<Cmd>vertical resize +10<CR>", { desc = "make buffer wider" })
|
map("n", "<leader>rl", "<Cmd>vertical resize +10<CR>", { desc = "make buffer wider" })
|
||||||
map("n", "<leader>rj", "<Cmd>resize -5<CR>", { desc = "make buffer shorter" })
|
map("n", "<leader>rj", "<Cmd>resize -5<CR>", { desc = "make buffer shorter" })
|
||||||
@@ -41,12 +45,21 @@ map("n", "<leader>bp", "<Cmd>bprevious<CR>", { desc = "prev buffer" })
|
|||||||
map("n", "<leader>bn", "<Cmd>bnext<CR>", { desc = "next buffer" })
|
map("n", "<leader>bn", "<Cmd>bnext<CR>", { desc = "next buffer" })
|
||||||
map("n", "<leader>bd", "<Cmd>bdelete<CR>", { desc = "delete buffer" })
|
map("n", "<leader>bd", "<Cmd>bdelete<CR>", { desc = "delete buffer" })
|
||||||
|
|
||||||
map("t", "\\<Esc>", "<C-\\><C-n>", { desc = "exit terminal" })
|
map({ "n", "v" }, "<leader>y", '"+y', { desc = "yank to system clipboard" })
|
||||||
|
map("n", "<leader>Y", '"+Y', { desc = "yank line to system clipboard" })
|
||||||
|
map("n", "<leader>p", '"+p', { desc = "paste from system clipboard" })
|
||||||
|
map("n", "<leader>P", '"+P', { desc = "paste before from system clipboard" })
|
||||||
|
|
||||||
|
-- experimenting
|
||||||
|
map("t", { "\\\\", "<C-\\><C-\\>", "<C-Esc>", "\\<Esc>" }, "<C-\\><C-n>", { desc = "exit terminal" })
|
||||||
|
|
||||||
map("n", "<C-h>", "<C-w>h", { desc = "window left" })
|
map("n", "<C-h>", "<C-w>h", { desc = "window left" })
|
||||||
map("n", "<C-j>", "<C-w>j", { desc = "window down" })
|
map("n", "<C-j>", "<C-w>j", { desc = "window down" })
|
||||||
map("n", "<C-k>", "<C-w>k", { desc = "window up" })
|
map("n", "<C-k>", "<C-w>k", { desc = "window up" })
|
||||||
map("n", "<C-l>", "<C-w>l", { desc = "window right" })
|
map("n", "<C-l>", "<C-w>l", { desc = "window right" })
|
||||||
|
map("n", "gR", function()
|
||||||
|
vim.cmd.normal({ args = { vim.keycode("<C-l>") }, bang = true })
|
||||||
|
end, { desc = "refresh current view" })
|
||||||
|
|
||||||
-- this is needed to disable refresh behavior for <C-l> for navigation
|
-- this is needed to disable refresh behavior for <C-l> for navigation
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
@@ -60,25 +73,10 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- hjkl supremacy
|
-- hjkl supremacy
|
||||||
map({ "n", "i", "v", "x", "s", "o", "c" }, { "<left>", "<right>", "<up>", "<down>" }, function()
|
map({ "n", "v", "i" }, { "<left>", "<right>", "<up>", "<down>" }, function()
|
||||||
vim.notify('hjkl supremacy', vim.log.levels.ERROR)
|
vim.notify('hjkl supremacy', vim.log.levels.ERROR)
|
||||||
end, { desc = "hjkl supremacy" })
|
end, { desc = "hjkl supremacy" })
|
||||||
|
|
||||||
map("n", "g.", vim.diagnostic.open_float, { desc = "line diagnostics" })
|
|
||||||
map("n", "gl", vim.diagnostic.setloclist, { desc = "diagnostic list" })
|
|
||||||
|
|
||||||
-- diagnostics only on error.
|
|
||||||
map("n", "g]", function()
|
|
||||||
vim.diagnostic.goto_next({
|
|
||||||
severity = vim.diagnostic.severity.ERROR,
|
|
||||||
})
|
|
||||||
end, { desc = "next error" })
|
|
||||||
map("n", "g[", function()
|
|
||||||
vim.diagnostic.goto_prev({
|
|
||||||
severity = vim.diagnostic.severity.ERROR,
|
|
||||||
})
|
|
||||||
end, { desc = "prev error" })
|
|
||||||
|
|
||||||
local function rename_without_default()
|
local function rename_without_default()
|
||||||
vim.ui.input({
|
vim.ui.input({
|
||||||
prompt = "New Name: ",
|
prompt = "New Name: ",
|
||||||
@@ -93,19 +91,64 @@ local function rename_without_default()
|
|||||||
end
|
end
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("LspAttach", {
|
vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
|
-- defaults are:
|
||||||
|
-- grn → Rename symbol
|
||||||
|
-- gra → Code actions
|
||||||
|
-- grr → Find references
|
||||||
|
-- gri → Go to implementation
|
||||||
|
-- grt → Go to type definition
|
||||||
|
-- gO → Document symbols
|
||||||
callback = function(ev)
|
callback = function(ev)
|
||||||
map("n", "gd", vim.lsp.buf.definition, { buffer = ev.buf, desc = "goto definition" })
|
map("n", "gd", vim.lsp.buf.definition, { buffer = ev.buf, desc = "goto definition" })
|
||||||
map("n", "gD", vim.lsp.buf.declaration, { buffer = ev.buf, desc = "goto declaration" })
|
map("n", "gD", vim.lsp.buf.declaration, { buffer = ev.buf, desc = "goto declaration" })
|
||||||
map("n", "grd", vim.lsp.buf.references, { buffer = ev.buf, desc = "list references" })
|
map("n", "gfr", vim.lsp.buf.references, { buffer = ev.buf, desc = "find references" })
|
||||||
map("n", "grn", rename_without_default, { buffer = ev.buf, desc = "rename symbol" })
|
map("n", "grn", rename_without_default, { buffer = ev.buf, desc = "rename symbol completely" })
|
||||||
map("i", "<C-Space>", vim.lsp.completion.get, { buffer = ev.buf, desc = "trigger completion" })
|
map("n", "gRN", vim.lsp.buf.rename, { buffer = ev.buf, desc = "rename symbol starting with whatever is there" })
|
||||||
|
|
||||||
|
map({ "n", "x" }, "<leader>ca", vim.lsp.buf.code_action, { buffer = ev.buf, desc = "code actions" })
|
||||||
|
map("n", "<leader>cf", function()
|
||||||
|
vim.lsp.buf.code_action({
|
||||||
|
apply = true,
|
||||||
|
context = {
|
||||||
|
only = { "quickfix" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end, { buffer = ev.buf, desc = "quick fixes" })
|
||||||
|
map({ "n", "x" }, "<leader>cs", function()
|
||||||
|
vim.lsp.buf.code_action({
|
||||||
|
context = {
|
||||||
|
only = { "source" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end, { buffer = ev.buf, desc = "source actions" })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
map("n", "gle", vim.diagnostic.setloclist, { desc = "display error information" })
|
-- diagnostics
|
||||||
map("n", "gie", function()
|
map("n", "g.", vim.diagnostic.open_float, { desc = "line diagnostics" })
|
||||||
|
map("n", "gl", vim.diagnostic.setloclist, { desc = "diagnostic list" })
|
||||||
|
|
||||||
|
map("n", "]g", function()
|
||||||
|
vim.diagnostic.jump({
|
||||||
|
count = 1,
|
||||||
|
severity = {
|
||||||
|
min = vim.diagnostic.severity.WARN,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end, { desc = "next warning/error" })
|
||||||
|
map("n", "[g", function()
|
||||||
|
vim.diagnostic.jump({
|
||||||
|
count = -1,
|
||||||
|
severity = {
|
||||||
|
min = vim.diagnostic.severity.WARN,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end, { desc = "prev warning/error" })
|
||||||
|
|
||||||
|
map("n", "gld", vim.diagnostic.setloclist, { desc = "display diagnostic information" })
|
||||||
|
map("n", "<leader>ti", function()
|
||||||
vim.diagnostic.config({ virtual_text = not vim.diagnostic.config().virtual_text })
|
vim.diagnostic.config({ virtual_text = not vim.diagnostic.config().virtual_text })
|
||||||
end, { desc = "toggle inline errors" })
|
end, { desc = "toggle inline diagnostics" })
|
||||||
map("n", "gve", function()
|
map("n", "<leader>tv", function()
|
||||||
vim.diagnostic.config({ virtual_lines = not vim.diagnostic.config().virtual_lines })
|
vim.diagnostic.config({ virtual_lines = not vim.diagnostic.config().virtual_lines })
|
||||||
end, { desc = "toggle virtual line errors" })
|
end, { desc = "toggle virtual diagnostics" })
|
||||||
|
|||||||
@@ -1,41 +1,39 @@
|
|||||||
local g = vim.g
|
local g = vim.g
|
||||||
local o = vim.opt
|
local o = vim.opt
|
||||||
|
|
||||||
-- Leaders
|
g.mapleader = " " -- Uses space as the global leader key.
|
||||||
g.mapleader = " " -- Uses space as the global leader key.
|
g.maplocalleader = " " -- Uses space as the local leader key.
|
||||||
g.maplocalleader = " " -- Uses space as the local leader key.
|
g.clipboard = "osc52" -- Routes the + and * registers through OSC52 in terminal Neovim.
|
||||||
|
|
||||||
-- Interface
|
o.number = true -- Shows absolute line numbers.
|
||||||
o.number = true -- Shows absolute line numbers.
|
|
||||||
o.relativenumber = true -- Shows relative numbers for easier motion.
|
o.relativenumber = true -- Shows relative numbers for easier motion.
|
||||||
o.scrolloff = 8 -- Keeps context lines visible around the cursor.
|
o.cursorline = true -- Highlights the line under the cursor.
|
||||||
o.signcolumn = "yes" -- Always reserves space for signs in the gutter.
|
o.textwidth = 80 -- Wraps inserted text after 80 columns when formatting is active.
|
||||||
o.colorcolumn = "+1" -- Highlights the preferred maximum line width.
|
o.scrolloff = 8 -- Keeps context lines visible around the cursor.
|
||||||
o.wrap = false -- Prevents long lines from wrapping on screen.
|
o.signcolumn = "yes" -- Always reserves space for signs in the gutter.
|
||||||
o.list = true -- Displays whitespace characters using listchars.
|
o.colorcolumn = "+1" -- Highlights the preferred maximum line width.
|
||||||
|
o.list = true -- Displays whitespace characters using listchars.
|
||||||
o.listchars = {
|
o.listchars = {
|
||||||
tab = "» ",
|
tab = "» ",
|
||||||
trail = "·",
|
trail = "·",
|
||||||
extends = "⟩",
|
extends = "⟩",
|
||||||
precedes = "⟨",
|
precedes = "⟨",
|
||||||
nbsp = "␣",
|
nbsp = "␣",
|
||||||
} -- Defines how invisible characters are rendered.
|
} -- Defines how invisible characters are rendered.
|
||||||
o.termguicolors = true -- Enables full RGB color support.
|
o.termguicolors = true -- Enables full RGB color support.
|
||||||
o.mouse = "" -- Disables mouse support.
|
o.mouse = "" -- Disables mouse support.
|
||||||
|
o.tabstop = 4 -- Renders tab characters as four columns.
|
||||||
-- Editing
|
o.softtabstop = 4 -- Makes tab/backspace feel like four spaces.
|
||||||
o.tabstop = 4 -- Renders tab characters as four columns.
|
o.shiftwidth = 4 -- Uses four columns for each indent step.
|
||||||
o.softtabstop = 4 -- Makes tab/backspace feel like four spaces.
|
o.expandtab = true -- Inserts spaces when indenting by default.
|
||||||
o.shiftwidth = 4 -- Uses four columns for each indent step.
|
o.smartindent = true -- Adds indentation automatically on new lines.
|
||||||
o.expandtab = false -- Keeps literal tab characters instead of spaces.
|
o.swapfile = false -- Disables swapfile creation.
|
||||||
o.smartindent = true -- Adds indentation automatically on new lines.
|
o.incsearch = true -- Updates search matches as you type.
|
||||||
o.swapfile = false -- Disables swapfile creation.
|
o.completeopt = { "menuone", "noselect", "fuzzy", "nosort" } -- Enables fuzzy completion matching.
|
||||||
|
o.pumheight = 8 -- Limits the completion popup menu size.
|
||||||
-- Search and update behavior
|
o.updatetime = 50 -- Reduces idle delay for swap and CursorHold events.
|
||||||
o.incsearch = true -- Updates search matches as you type.
|
o.spelllang = { "en_us" } -- Uses US English for spell checking.
|
||||||
o.updatetime = 50 -- Reduces idle delay for swap and CursorHold events.
|
o.shell = "bash" -- Runs shell commands through bash.
|
||||||
o.spelllang = { "en_us" } -- Uses US English for spell checking.
|
|
||||||
|
|
||||||
-- Shell
|
|
||||||
o.shell = "bash" -- Runs shell commands through bash.
|
|
||||||
|
|
||||||
|
-- Only show the invisible characters inside the code editing buffers
|
||||||
|
vim.cmd([[autocmd BufWinEnter * if &buftype != '' | setlocal nolist | endif]])
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
require("romanzy.plugins.rose-pine")
|
require("romanzy.plugins.rose-pine")
|
||||||
require("romanzy.plugins.mini")
|
require("romanzy.plugins.mini")
|
||||||
|
require("romanzy.plugins.lazygit")
|
||||||
|
require("romanzy.plugins.diffview")
|
||||||
require("romanzy.plugins.oil")
|
require("romanzy.plugins.oil")
|
||||||
require("romanzy.plugins.telescope")
|
require("romanzy.plugins.telescope")
|
||||||
require("romanzy.plugins.nvim-treesitter")
|
require("romanzy.plugins.nvim-treesitter")
|
||||||
|
require("romanzy.plugins.conform")
|
||||||
require("romanzy.plugins.lsp")
|
require("romanzy.plugins.lsp")
|
||||||
require("romanzy.plugins.header42")
|
require("romanzy.plugins.codamheader")
|
||||||
|
require("romanzy.plugins.romanzy")
|
||||||
|
|||||||
34
nvim/.config/nvim/lua/romanzy/plugins/codamheader.lua
Normal file
34
nvim/.config/nvim/lua/romanzy/plugins/codamheader.lua
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
{ src = "https://github.com/BeerB34r/codam-header.nvim" },
|
||||||
|
})
|
||||||
|
|
||||||
|
require("codamheader").setup({
|
||||||
|
default_map = false,
|
||||||
|
auto_update = true,
|
||||||
|
user = "rvolovoy",
|
||||||
|
mail = "rvolovoy@student.codam.nl",
|
||||||
|
exascii = {},
|
||||||
|
-- exascii = {
|
||||||
|
-- "—————No norm compliance?——————",
|
||||||
|
-- "⠀⣞⢽⢪⢣⢣⢣⢫⡺⡵⣝⡮⣗⢷⢽⢽⢽⣮⡷⡽⣜⣜⢮⢺⣜⢷⢽⢝⡽⣝",
|
||||||
|
-- "⠸⡸⠜⠕⠕⠁⢁⢇⢏⢽⢺⣪⡳⡝⣎⣏⢯⢞⡿⣟⣷⣳⢯⡷⣽⢽⢯⣳⣫⠇",
|
||||||
|
-- "⠀⠀⢀⢀⢄⢬⢪⡪⡎⣆⡈⠚⠜⠕⠇⠗⠝⢕⢯⢫⣞⣯⣿⣻⡽⣏⢗⣗⠏⠀",
|
||||||
|
-- "⠀⠪⡪⡪⣪⢪⢺⢸⢢⢓⢆⢤⢀⠀⠀⠀⠀⠈⢊⢞⡾⣿⡯⣏⢮⠷⠁⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠈⠊⠆⡃⠕⢕⢇⢇⢇⢇⢇⢏⢎⢎⢆⢄⠀⢑⣽⣿⢝⠲⠉⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⠀⡿⠂⠠⠀⡇⢇⠕⢈⣀⠀⠁⠡⠣⡣⡫⣂⣿⠯⢪⠰⠂⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⡦⡙⡂⢀⢤⢣⠣⡈⣾⡃⠠⠄⠀⡄⢱⣌⣶⢏⢊⠂⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⢝⡲⣜⡮⡏⢎⢌⢂⠙⠢⠐⢀⢘⢵⣽⣿⡿⠁⠁⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⠨⣺⡺⡕⡕⡱⡑⡆⡕⡅⡕⡜⡼⢽⡻⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⣼⣳⣫⣾⣵⣗⡵⡱⡡⢣⢑⢕⢜⢕⡝⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⣴⣿⣾⣿⣿⣿⡿⡽⡑⢌⠪⡢⡣⣣⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⡟⡾⣿⢿⢿⢵⣽⣾⣼⣘⢸⢸⣞⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "⠀⠀⠀⠀⠁⠇⠡⠩⡫⢿⣝⡻⡮⣒⢽⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",
|
||||||
|
-- "——————————————————————————————",
|
||||||
|
-- },
|
||||||
|
-- exascii_left = false,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
vim.api.nvim_create_user_command("Header42", function()
|
||||||
|
require("codamheader.utils.header").stdheader()
|
||||||
|
end, {})
|
||||||
22
nvim/.config/nvim/lua/romanzy/plugins/conform.lua
Normal file
22
nvim/.config/nvim/lua/romanzy/plugins/conform.lua
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
{
|
||||||
|
src = "https://github.com/stevearc/conform.nvim",
|
||||||
|
name = "conform.nvim",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
require("conform").setup({
|
||||||
|
formatters_by_ft = {
|
||||||
|
javascript = { "prettier" },
|
||||||
|
javascriptreact = { "prettier" },
|
||||||
|
typescript = { "prettier" },
|
||||||
|
typescriptreact = { "prettier" },
|
||||||
|
c = { filter = function() return false end },
|
||||||
|
cpp = { filter = function() return false end },
|
||||||
|
h = { filter = function() return false end }
|
||||||
|
},
|
||||||
|
format_on_save = {
|
||||||
|
lsp_format = "fallback",
|
||||||
|
timeout_ms = 2000,
|
||||||
|
},
|
||||||
|
})
|
||||||
6
nvim/.config/nvim/lua/romanzy/plugins/diffview.lua
Normal file
6
nvim/.config/nvim/lua/romanzy/plugins/diffview.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
{
|
||||||
|
src = "https://github.com/sindrets/diffview.nvim",
|
||||||
|
name = "diffview.nvim",
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
vim.pack.add({
|
|
||||||
{ src = "https://codeberg.org/42nerds/header42.nvim" },
|
|
||||||
})
|
|
||||||
|
|
||||||
local function load_header42()
|
|
||||||
-- Prevent double loading
|
|
||||||
if _G.header42_loaded then return end
|
|
||||||
_G.header42_loaded = true
|
|
||||||
|
|
||||||
-- Configure the plugin
|
|
||||||
require("header42").setup({
|
|
||||||
-- autocmd = { create = false },
|
|
||||||
username = "rvolovoy",
|
|
||||||
email = "rvolovoy@student.codam.nl",
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
-- load it right away
|
|
||||||
-- load_header42();
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
|
||||||
pattern = { "c", "cpp", "python" },
|
|
||||||
once = true,
|
|
||||||
callback = function()
|
|
||||||
load_header42()
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
10
nvim/.config/nvim/lua/romanzy/plugins/lazygit.lua
Normal file
10
nvim/.config/nvim/lua/romanzy/plugins/lazygit.lua
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
{
|
||||||
|
src = "https://github.com/kdheepak/lazygit.nvim",
|
||||||
|
name = "lazygit.nvim",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src = "https://github.com/nvim-lua/plenary.nvim",
|
||||||
|
name = "plenary.nvim",
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -15,9 +15,6 @@ vim.pack.add({
|
|||||||
|
|
||||||
local mason_lspconfig = require("mason-lspconfig")
|
local mason_lspconfig = require("mason-lspconfig")
|
||||||
|
|
||||||
vim.opt.completeopt = { "menu", "menuone", "noselect", "popup", "fuzzy" }
|
|
||||||
vim.opt.pumheight = 8
|
|
||||||
|
|
||||||
local diag_inline_enabled = true
|
local diag_inline_enabled = true
|
||||||
|
|
||||||
local function diag_virtual_text()
|
local function diag_virtual_text()
|
||||||
@@ -26,7 +23,7 @@ local function diag_virtual_text()
|
|||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
severity = vim.diagnostic.severity.ERROR,
|
severity = vim.diagnostic.severity.WARN,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -46,20 +43,7 @@ end
|
|||||||
|
|
||||||
configure_diagnostics()
|
configure_diagnostics()
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("LspAttach", {
|
local capabilities = require("mini.completion").get_lsp_capabilities()
|
||||||
callback = function(ev)
|
|
||||||
local client = vim.lsp.get_client_by_id(ev.data.client_id)
|
|
||||||
if not client then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.lsp.completion.enable(true, client.id, ev.buf, {
|
|
||||||
autotrigger = true,
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
||||||
local managed_servers = {
|
local managed_servers = {
|
||||||
"bashls",
|
"bashls",
|
||||||
"clangd",
|
"clangd",
|
||||||
@@ -67,8 +51,11 @@ local managed_servers = {
|
|||||||
"lua_ls",
|
"lua_ls",
|
||||||
"marksman",
|
"marksman",
|
||||||
"taplo",
|
"taplo",
|
||||||
"ts_ls",
|
|
||||||
"yamlls",
|
"yamlls",
|
||||||
|
"ts_ls",
|
||||||
|
"tailwindcss",
|
||||||
|
"eslint",
|
||||||
|
"tinymist",
|
||||||
}
|
}
|
||||||
local servers = {
|
local servers = {
|
||||||
bashls = {},
|
bashls = {},
|
||||||
@@ -76,7 +63,6 @@ local servers = {
|
|||||||
jsonls = {},
|
jsonls = {},
|
||||||
marksman = {},
|
marksman = {},
|
||||||
taplo = {},
|
taplo = {},
|
||||||
ts_ls = {},
|
|
||||||
yamlls = {},
|
yamlls = {},
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
settings = {
|
settings = {
|
||||||
@@ -94,6 +80,10 @@ local servers = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
ts_ls = {},
|
||||||
|
tailwindcss = {},
|
||||||
|
eslint = {},
|
||||||
|
tinymist = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
for server_name, config in pairs(servers) do
|
for server_name, config in pairs(servers) do
|
||||||
|
|||||||
@@ -7,29 +7,22 @@ vim.pack.add({
|
|||||||
})
|
})
|
||||||
|
|
||||||
local clue = require("mini.clue")
|
local clue = require("mini.clue")
|
||||||
|
local completion = require("mini.completion")
|
||||||
local icons = require("mini.icons")
|
local icons = require("mini.icons")
|
||||||
local git = require("mini.git")
|
local git = require("mini.git")
|
||||||
local diff = require("mini.diff")
|
local diff = require("mini.diff")
|
||||||
local statusline = require("mini.statusline")
|
local statusline = require("mini.statusline")
|
||||||
local hipatterns = require("mini.hipatterns")
|
local hipatterns = require("mini.hipatterns")
|
||||||
|
local pairs = require("mini.pairs")
|
||||||
local ai = require("mini.ai")
|
local ai = require("mini.ai")
|
||||||
local notify = require("mini.notify")
|
local notify = require("mini.notify")
|
||||||
local surround = require("mini.surround")
|
local surround = require("mini.surround")
|
||||||
|
|
||||||
local function set_mini_diff_highlights()
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffSignAdd", { fg = "#9ccf8d" })
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffSignChange", { fg = "#f6c177" })
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffSignDelete", { fg = "#eb6f92" })
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffOverAdd", { fg = "#9ccf8d" })
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffOverChange", { fg = "#f6c177" })
|
|
||||||
vim.api.nvim_set_hl(0, "MiniDiffOverDelete", { fg = "#eb6f92" })
|
|
||||||
end
|
|
||||||
|
|
||||||
clue.setup({
|
clue.setup({
|
||||||
triggers = {
|
triggers = {
|
||||||
{ mode = "n", keys = "<leader>" },
|
{ mode = "n", keys = "<leader>" },
|
||||||
{ mode = "n", keys = "g" },
|
{ mode = "n", keys = "g" },
|
||||||
{ mode = "n", keys = "<C-w>"},
|
{ mode = "n", keys = "<C-w>" },
|
||||||
{ mode = "n", keys = "z" },
|
{ mode = "n", keys = "z" },
|
||||||
{ mode = "i", keys = "<C-x>" },
|
{ mode = "i", keys = "<C-x>" },
|
||||||
},
|
},
|
||||||
@@ -46,25 +39,63 @@ clue.setup({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
completion.setup({})
|
||||||
|
local function complete_accept_top()
|
||||||
|
if vim.fn.pumvisible() == 0 then
|
||||||
|
return "<C-y>"
|
||||||
|
end
|
||||||
|
|
||||||
|
if vim.fn.complete_info({ "selected" }).selected == -1 then
|
||||||
|
return "<C-n><C-y>"
|
||||||
|
end
|
||||||
|
|
||||||
|
return "<C-y>"
|
||||||
|
end
|
||||||
|
vim.keymap.set("i", "<C-y>", complete_accept_top, { expr = true })
|
||||||
|
|
||||||
icons.setup({})
|
icons.setup({})
|
||||||
|
|
||||||
git.setup({})
|
git.setup({})
|
||||||
|
|
||||||
diff.setup({})
|
diff.setup({})
|
||||||
|
local function set_mini_diff_highlights()
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffSignAdd", { fg = "#9ccf8d" })
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffSignChange", { fg = "#f6c177" })
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffSignDelete", { fg = "#eb6f92" })
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffOverAdd", { fg = "#9ccf8d" })
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffOverChange", { fg = "#f6c177" })
|
||||||
|
vim.api.nvim_set_hl(0, "MiniDiffOverDelete", { fg = "#eb6f92" })
|
||||||
|
end
|
||||||
set_mini_diff_highlights()
|
set_mini_diff_highlights()
|
||||||
vim.api.nvim_create_autocmd("ColorScheme", {
|
vim.api.nvim_create_autocmd("ColorScheme", {
|
||||||
callback = set_mini_diff_highlights,
|
callback = set_mini_diff_highlights,
|
||||||
})
|
})
|
||||||
|
|
||||||
statusline.setup({ use_icons = true })
|
statusline.setup({ use_icons = true })
|
||||||
|
|
||||||
hipatterns.setup({
|
hipatterns.setup({
|
||||||
highlighters = {
|
highlighters = {
|
||||||
fixme = { pattern = "%f[%w]()FIXME()%f[%W]", group = "MiniHipatternsFixme" },
|
fixme = { pattern = "%f[%w]()FIXME()%f[%W]", group = "MiniHipatternsFixme" },
|
||||||
hack = { pattern = "%f[%w]()HACK()%f[%W]", group = "MiniHipatternsHack" },
|
hack = { pattern = "%f[%w]()HACK()%f[%W]", group = "MiniHipatternsHack" },
|
||||||
todo = { pattern = "%f[%w]()TODO()%f[%W]", group = "MiniHipatternsTodo" },
|
todo = { pattern = "%f[%w]()TODO()%f[%W]", group = "MiniHipatternsTodo" },
|
||||||
note = { pattern = "%f[%w]()NOTE()%f[%W]", group = "MiniHipatternsNote" },
|
note = { pattern = "%f[%w]()NOTE()%f[%W]", group = "MiniHipatternsNote" },
|
||||||
file = { pattern = "%f[%w]()FILE()%f[%W]", group = "MiniHipatternsNote" },
|
|
||||||
hex_color = hipatterns.gen_highlighter.hex_color(),
|
hex_color = hipatterns.gen_highlighter.hex_color(),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
pairs.setup({
|
||||||
|
modes = { insert = true, command = true, terminal = false },
|
||||||
|
})
|
||||||
|
|
||||||
ai.setup({})
|
ai.setup({})
|
||||||
notify.setup({})
|
|
||||||
|
notify.setup({
|
||||||
|
lsp_progress = {
|
||||||
|
-- the message "lua_ls: processing completion..." and
|
||||||
|
-- "lua_ls: Diagnosing" is very annoying
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
vim.notify = notify.make_notify()
|
vim.notify = notify.make_notify()
|
||||||
|
|
||||||
surround.setup({})
|
surround.setup({})
|
||||||
|
|||||||
@@ -26,11 +26,10 @@ require("oil").setup({
|
|||||||
["<C-j>"] = false,
|
["<C-j>"] = false,
|
||||||
["<C-k>"] = false,
|
["<C-k>"] = false,
|
||||||
["<C-l>"] = false,
|
["<C-l>"] = false,
|
||||||
|
["gR"] = "actions.refresh", -- replaces default <C-l> behavior
|
||||||
["<C-s>"] = false,
|
["<C-s>"] = false,
|
||||||
["<C-p>"] = { "actions.preview", opts = { vertical = true, split = "belowright" } },
|
["<C-p>"] = { "actions.preview", opts = { vertical = true, split = "belowright" } },
|
||||||
["<BS>"] = { "actions.parent", mode = "n" },
|
["<BS>"] = { "actions.parent", mode = "n" },
|
||||||
["<A-h>"] = { "actions.parent", mode = "n" },
|
|
||||||
["<A-l>"] = "actions.select",
|
|
||||||
},
|
},
|
||||||
view_options = {
|
view_options = {
|
||||||
show_hidden = true,
|
show_hidden = true,
|
||||||
|
|||||||
2
nvim/.config/nvim/lua/romanzy/plugins/romanzy.lua
Normal file
2
nvim/.config/nvim/lua/romanzy/plugins/romanzy.lua
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
require("romanzy.custom.tabline").setup()
|
||||||
|
require("romanzy.custom.wrap").toggle(false)
|
||||||
@@ -15,13 +15,10 @@ require("telescope").setup({
|
|||||||
filesize_limit = 0.1, -- in MB
|
filesize_limit = 0.1, -- in MB
|
||||||
},
|
},
|
||||||
initial_mode = "insert",
|
initial_mode = "insert",
|
||||||
winblend = 30,
|
-- winblend = 30,
|
||||||
file_ignore_patterns = {
|
file_ignore_patterns = {
|
||||||
"%.git/.*",
|
"%.git/.*",
|
||||||
"^%./lib/.*",
|
|
||||||
"^%./bin/.*",
|
|
||||||
"%.cache/.*",
|
"%.cache/.*",
|
||||||
".*%.[od]",
|
|
||||||
},
|
},
|
||||||
layout_strategy = "flex",
|
layout_strategy = "flex",
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,11 +1,23 @@
|
|||||||
{
|
{
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"header42.nvim": {
|
"codam-header.nvim": {
|
||||||
"rev": "d41468df1c53081c909fc78248cf233893b59809",
|
"rev": "a8fbd2a7003eecbf6e85693e85d7d4d464625193",
|
||||||
"src": "https://codeberg.org/42nerds/header42.nvim"
|
"src": "https://github.com/BeerB34r/codam-header.nvim"
|
||||||
|
},
|
||||||
|
"conform.nvim": {
|
||||||
|
"rev": "619363c30309d29ffa631e67c8183f2a72caa373",
|
||||||
|
"src": "https://github.com/stevearc/conform.nvim"
|
||||||
|
},
|
||||||
|
"diffview.nvim": {
|
||||||
|
"rev": "4516612fe98ff56ae0415a259ff6361a89419b0a",
|
||||||
|
"src": "https://github.com/sindrets/diffview.nvim"
|
||||||
|
},
|
||||||
|
"lazygit.nvim": {
|
||||||
|
"rev": "a04ad0dbc725134edbee3a5eea29290976695357",
|
||||||
|
"src": "https://github.com/kdheepak/lazygit.nvim"
|
||||||
},
|
},
|
||||||
"mason-lspconfig.nvim": {
|
"mason-lspconfig.nvim": {
|
||||||
"rev": "21c5b3ebeaa0412e28096bb0701434c51c1fbf76",
|
"rev": "47059d71b42d74b0a1e9f61c1d99d301039c3b5b",
|
||||||
"src": "https://github.com/mason-org/mason-lspconfig.nvim"
|
"src": "https://github.com/mason-org/mason-lspconfig.nvim"
|
||||||
},
|
},
|
||||||
"mason.nvim": {
|
"mason.nvim": {
|
||||||
@@ -13,11 +25,11 @@
|
|||||||
"src": "https://github.com/mason-org/mason.nvim"
|
"src": "https://github.com/mason-org/mason.nvim"
|
||||||
},
|
},
|
||||||
"mini.nvim": {
|
"mini.nvim": {
|
||||||
"rev": "1599a473aa6f5290a5d740b1144846e6f0c3963d",
|
"rev": "c5cdbadeb423ff724e27a42ab2d1c504d1d6fc5a",
|
||||||
"src": "https://github.com/echasnovski/mini.nvim"
|
"src": "https://github.com/echasnovski/mini.nvim"
|
||||||
},
|
},
|
||||||
"nvim-lspconfig": {
|
"nvim-lspconfig": {
|
||||||
"rev": "bfcc0171a43f22afa61d927ffe9fcb6cb85dc99e",
|
"rev": "292f44408498103c47996ff5c18fd366293840d8",
|
||||||
"src": "https://github.com/neovim/nvim-lspconfig"
|
"src": "https://github.com/neovim/nvim-lspconfig"
|
||||||
},
|
},
|
||||||
"nvim-treesitter": {
|
"nvim-treesitter": {
|
||||||
|
|||||||
Reference in New Issue
Block a user