feat: ✨ add new dotfiles
This commit is contained in:
parent
7a5975bb81
commit
e8bfb35161
34 changed files with 1474 additions and 0 deletions
5
.config/nvim/.luarc.json
Normal file
5
.config/nvim/.luarc.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"diagnostics.globals": [
|
||||
"vim"
|
||||
]
|
||||
}
|
3
.config/nvim/init.lua
Normal file
3
.config/nvim/init.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
require("options")
|
||||
require("configs.lazy")
|
||||
require("keymaps")
|
24
.config/nvim/lazy-lock.json
Normal file
24
.config/nvim/lazy-lock.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" },
|
||||
"blink.cmp": { "branch": "main", "commit": "18b352d12b35bca148427b607098df14b75a218f" },
|
||||
"catppuccin": { "branch": "main", "commit": "d72341852556e2dfe19f779cc682c16dd58548fc" },
|
||||
"crates.nvim": { "branch": "main", "commit": "85356807f3a0e9a3f7015586f3a010170d338686" },
|
||||
"fzf-lua": { "branch": "main", "commit": "e6afa1aa22893280720cde1cdd0b0b188d5815af" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "e5e9bf48211a13d9ee6c1077c88327c49c1ab4a0" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "f4f791f67e70d378a754d02da068231d2352e5bc" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "1a31f824b9cd5bc6f342fc29e9a53b60d74af245" },
|
||||
"mason.nvim": { "branch": "main", "commit": "fc98833b6da5de5a9c5b1446ac541577059555be" },
|
||||
"nvim-autopairs": { "branch": "master", "commit": "68f0e5c3dab23261a945272032ee6700af86227a" },
|
||||
"nvim-dap": { "branch": "master", "commit": "52302f02fea3a490e55475de52fa4deb8af2eb11" },
|
||||
"nvim-dap-python": { "branch": "master", "commit": "34282820bb713b9a5fdb120ae8dd85c2b3f49b51" },
|
||||
"nvim-dap-ui": { "branch": "master", "commit": "bc81f8d3440aede116f821114547a476b082b319" },
|
||||
"nvim-dap-virtual-text": { "branch": "master", "commit": "df66808cd78b5a97576bbaeee95ed5ca385a9750" },
|
||||
"nvim-highlight-colors": { "branch": "main", "commit": "a770df5fbd98abbb0fc1a95d9a3f2bb1e51e3e2c" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "1110787f1b464888c59a044c48c5119d14078044" },
|
||||
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "36bbf518420918e965d11dad3d3f194803c47731" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "1020869742ecb191f260818234517f4a1515cfe8" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
|
||||
"rustaceanvim": { "branch": "master", "commit": "f03035fa03ccb36cd26d0792c946fbacba1d1a39" },
|
||||
"yazi.nvim": { "branch": "main", "commit": "98db02660a0f853f0bbf051c14f613aff44e5fd8" }
|
||||
}
|
31
.config/nvim/lua/configs/lazy.lua
Normal file
31
.config/nvim/lua/configs/lazy.lua
Normal file
|
@ -0,0 +1,31 @@
|
|||
-- Bootstrap lazy.nvim
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
-- Make sure to setup `mapleader` and `maplocalleader` before
|
||||
-- loading lazy.nvim so that mappings are correct.
|
||||
-- This is also a good place to setup other settings (vim.opt)
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = "\\"
|
||||
|
||||
-- Setup lazy.nvim
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
{ import = "plugins" },
|
||||
},
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = true, notify = false },
|
||||
})
|
35
.config/nvim/lua/keymaps.lua
Normal file
35
.config/nvim/lua/keymaps.lua
Normal file
|
@ -0,0 +1,35 @@
|
|||
local format_and_save = function()
|
||||
vim.lsp.buf.format()
|
||||
vim.cmd.update()
|
||||
end
|
||||
|
||||
vim.keymap.set("n", "<C-o>", require("fzf-lua").live_grep_native, {})
|
||||
vim.keymap.set("n", "<C-l>", require("fzf-lua").buffers, {})
|
||||
vim.keymap.set("n", "<C-k>", require("fzf-lua").lsp_definitions, {})
|
||||
vim.keymap.set("n", "\"m", require("fzf-lua").manpages, {})
|
||||
vim.keymap.set("n", "z.", require("fzf-lua").spell_suggest, {})
|
||||
vim.keymap.set("n", ".", require("fzf-lua").lsp_code_actions, {
|
||||
noremap = true, silent = true,
|
||||
})
|
||||
vim.keymap.set("n", ",", function() vim.diagnostic.open_float() end, {})
|
||||
vim.keymap.set("n", "\"r", function() vim.lsp.buf.rename() end, {})
|
||||
vim.keymap.set("n", ";", require("fzf-lua").diagnostics_workspace, {})
|
||||
|
||||
|
||||
vim.keymap.set({ "n", "i", "v" }, "<C-s>", format_and_save)
|
||||
vim.keymap.set({ "n", "v" }, "<CR>", "<cmd>Yazi<CR>", { noremap = true, silent = true, })
|
||||
vim.keymap.set("t", "<ESC>e", "<C-\\><C-n>", { noremap = true })
|
||||
|
||||
vim.keymap.set("n", "<F5>", function() require("dap").continue() end)
|
||||
vim.keymap.set("n", "<F10>", function() require("dap").step_over() end)
|
||||
vim.keymap.set("n", "<F11>", function() require("dap").step_into() end)
|
||||
vim.keymap.set("n", "<F12>", function() require("dap").step_out() end)
|
||||
vim.keymap.set("n", "\"db", function() require("dap").toggle_breakpoint() end)
|
||||
vim.keymap.set("n", "\"dl", function() require("dap").run_last() end)
|
||||
vim.keymap.set({ "n", "v" }, "\"dh", function()
|
||||
require("dap.ui.widgets").hover()
|
||||
end)
|
||||
|
||||
vim.keymap.set("n", "<Space>cv", require("crates").show_versions_popup, {})
|
||||
vim.keymap.set("n", "<Space>cf", require("crates").show_features_popup, {})
|
||||
vim.keymap.set("n", "<Space>cd", require("crates").show_dependencies_popup, {})
|
20
.config/nvim/lua/options.lua
Normal file
20
.config/nvim/lua/options.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.opt.mouse = 'a'
|
||||
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = false
|
||||
vim.opt.cursorline = true
|
||||
|
||||
vim.opt.spelllang = "en_gb"
|
||||
vim.opt.spell = true
|
||||
|
||||
vim.lsp.inlay_hint.enable()
|
||||
|
||||
vim.g.loaded_netrwPlugin = 0
|
||||
|
||||
vim.opt.termguicolors = true
|
39
.config/nvim/lua/plugins/blink.lua
Normal file
39
.config/nvim/lua/plugins/blink.lua
Normal file
|
@ -0,0 +1,39 @@
|
|||
return {
|
||||
"saghen/blink.cmp",
|
||||
version = '*',
|
||||
opts = {
|
||||
keymap = {
|
||||
["<cr>"] = { "accept", "fallback" },
|
||||
["<S-Up>"] = { "scroll_documentation_up", "fallback" },
|
||||
["<S-Down>"] = { "scroll_documentation_down", "fallback" },
|
||||
},
|
||||
appearance = {
|
||||
nerd_font_variant = "normal"
|
||||
},
|
||||
completion = {
|
||||
ghost_text = {
|
||||
enabled = true,
|
||||
},
|
||||
list = {
|
||||
selection = {
|
||||
preselect = false,
|
||||
auto_insert = false,
|
||||
},
|
||||
},
|
||||
documentation = {
|
||||
auto_show = true,
|
||||
auto_show_delay_ms = 1000,
|
||||
},
|
||||
menu = {
|
||||
draw = {
|
||||
treesitter = {
|
||||
"lsp"
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
signature = {
|
||||
enabled = true,
|
||||
}
|
||||
},
|
||||
}
|
6
.config/nvim/lua/plugins/comment.lua
Normal file
6
.config/nvim/lua/plugins/comment.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"numToStr/Comment.nvim",
|
||||
opts = {
|
||||
-- add any options here
|
||||
}
|
||||
}
|
8
.config/nvim/lua/plugins/crates.lua
Normal file
8
.config/nvim/lua/plugins/crates.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"saecki/crates.nvim",
|
||||
event = { "BufRead Cargo.toml" },
|
||||
tag = "stable",
|
||||
config = function()
|
||||
require("crates").setup()
|
||||
end,
|
||||
}
|
26
.config/nvim/lua/plugins/fzf-lua.lua
Normal file
26
.config/nvim/lua/plugins/fzf-lua.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
"ibhagwan/fzf-lua",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
"skim",
|
||||
fzf_opts = {
|
||||
["--wrap"] = true,
|
||||
|
||||
}
|
||||
},
|
||||
config = function()
|
||||
require("fzf-lua").setup({
|
||||
diagnostics = {
|
||||
multiline = true,
|
||||
fzf_opts = {
|
||||
["--wrap"] = true,
|
||||
},
|
||||
},
|
||||
winopts = {
|
||||
preview = {
|
||||
layout = "vertical",
|
||||
}
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
14
.config/nvim/lua/plugins/lualine.lua
Normal file
14
.config/nvim/lua/plugins/lualine.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
theme = "auto"
|
||||
-- theme = "horizon"
|
||||
-- theme = "OceanicNext"
|
||||
-- theme = "ayu_dark"
|
||||
}
|
||||
})
|
||||
end,
|
||||
}
|
15
.config/nvim/lua/plugins/mason-lspconfig.lua
Normal file
15
.config/nvim/lua/plugins/mason-lspconfig.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
config = function()
|
||||
require("mason").setup()
|
||||
require("mason-lspconfig").setup({
|
||||
ensure_installed = {
|
||||
"lua_ls",
|
||||
"clangd",
|
||||
"ruff",
|
||||
"pyright",
|
||||
"cssls",
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
6
.config/nvim/lua/plugins/mason.lua
Normal file
6
.config/nvim/lua/plugins/mason.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"williamboman/mason.nvim",
|
||||
config = function()
|
||||
require("mason").setup()
|
||||
end,
|
||||
}
|
8
.config/nvim/lua/plugins/nvim-autopairs.lua
Normal file
8
.config/nvim/lua/plugins/nvim-autopairs.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
event = "InsertEnter",
|
||||
config = true
|
||||
|
||||
-- use opts = {} for passing setup options
|
||||
-- this is equivalent to setup({}) function
|
||||
}
|
6
.config/nvim/lua/plugins/nvim-dap-python.lua
Normal file
6
.config/nvim/lua/plugins/nvim-dap-python.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"mfussenegger/nvim-dap-python",
|
||||
config = function()
|
||||
require("dap-python").setup("python")
|
||||
end
|
||||
}
|
21
.config/nvim/lua/plugins/nvim-dap-ui.lua
Normal file
21
.config/nvim/lua/plugins/nvim-dap-ui.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
"rcarriga/nvim-dap-ui",
|
||||
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },
|
||||
config = function()
|
||||
require("dapui").setup()
|
||||
|
||||
local dap, dapui = require("dap"), require("dapui")
|
||||
dap.listeners.before.attach.dapui_config = function()
|
||||
dapui.open()
|
||||
end
|
||||
dap.listeners.before.launch.dapui_config = function()
|
||||
dapui.open()
|
||||
end
|
||||
dap.listeners.before.event_terminated.dapui_config = function()
|
||||
dapui.close()
|
||||
end
|
||||
dap.listeners.before.event_exited.dapui_config = function()
|
||||
dapui.close()
|
||||
end
|
||||
end
|
||||
}
|
10
.config/nvim/lua/plugins/nvim-dap-virtual-text.lua
Normal file
10
.config/nvim/lua/plugins/nvim-dap-virtual-text.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
"theHamsta/nvim-dap-virtual-text",
|
||||
config = function()
|
||||
require("nvim-dap-virtual-text").setup({
|
||||
all_references = true,
|
||||
only_first_definition = false,
|
||||
highlight_new_as_changed = true,
|
||||
})
|
||||
end
|
||||
}
|
51
.config/nvim/lua/plugins/nvim-dap.lua
Normal file
51
.config/nvim/lua/plugins/nvim-dap.lua
Normal file
|
@ -0,0 +1,51 @@
|
|||
return {
|
||||
"mfussenegger/nvim-dap",
|
||||
config = function()
|
||||
local dap = require("dap")
|
||||
dap.adapters.gdb = {
|
||||
type = "executable",
|
||||
command = "gdb",
|
||||
args = { "--interpreter=dap", "--eval-command", "set print pretty on" }
|
||||
}
|
||||
|
||||
local gdb = {
|
||||
{
|
||||
name = "Launch",
|
||||
type = "gdb",
|
||||
request = "launch",
|
||||
program = function()
|
||||
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
|
||||
end,
|
||||
cwd = "${workspaceFolder}",
|
||||
stopAtBeginningOfMainSubprogram = false,
|
||||
},
|
||||
{
|
||||
name = "Select and attach to process",
|
||||
type = "gdb",
|
||||
request = "attach",
|
||||
program = function()
|
||||
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
|
||||
end,
|
||||
pid = function()
|
||||
local name = vim.fn.input('Executable name (filter): ')
|
||||
return require("dap.utils").pick_process({ filter = name })
|
||||
end,
|
||||
cwd = '${workspaceFolder}'
|
||||
},
|
||||
{
|
||||
name = 'Attach to gdbserver :1234',
|
||||
type = 'gdb',
|
||||
request = 'attach',
|
||||
target = 'localhost:1234',
|
||||
program = function()
|
||||
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
|
||||
end,
|
||||
cwd = '${workspaceFolder}'
|
||||
},
|
||||
}
|
||||
|
||||
dap.configurations.c = gdb
|
||||
dap.configurations.asm = gdb
|
||||
dap.configurations.cpp = gdb
|
||||
end
|
||||
}
|
6
.config/nvim/lua/plugins/nvim-highlight-colors.lua
Normal file
6
.config/nvim/lua/plugins/nvim-highlight-colors.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"brenoprata10/nvim-highlight-colors",
|
||||
config = function()
|
||||
require("nvim-highlight-colors").setup({})
|
||||
end
|
||||
}
|
40
.config/nvim/lua/plugins/nvim-lspconfig.lua
Normal file
40
.config/nvim/lua/plugins/nvim-lspconfig.lua
Normal file
|
@ -0,0 +1,40 @@
|
|||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = { "saghen/blink.cmp" },
|
||||
|
||||
opts = {
|
||||
servers = {
|
||||
lua_ls = {}
|
||||
}
|
||||
},
|
||||
|
||||
config = function()
|
||||
local capabilities = require("blink.cmp").get_lsp_capabilities()
|
||||
local lspconfig = require("lspconfig")
|
||||
|
||||
lspconfig["lua_ls"].setup({ capabilities = capabilities })
|
||||
lspconfig["clangd"].setup({ capabilities = capabilities })
|
||||
lspconfig["pyright"].setup({
|
||||
settings = {
|
||||
pyright = {
|
||||
disableOrganizeImpors = true,
|
||||
},
|
||||
python = {
|
||||
analysis = {
|
||||
ignore = { "*" }
|
||||
}
|
||||
}
|
||||
},
|
||||
capabilities = capabilities
|
||||
})
|
||||
lspconfig["ruff"].setup({
|
||||
init_options = {
|
||||
settings = {
|
||||
logLevel = "trace",
|
||||
},
|
||||
},
|
||||
capabilities = capabilities,
|
||||
})
|
||||
lspconfig["cssls"].setup({ capabilities = capabilities })
|
||||
end
|
||||
}
|
11
.config/nvim/lua/plugins/nvim-treesitter.lua
Normal file
11
.config/nvim/lua/plugins/nvim-treesitter.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
auto_install = true,
|
||||
highlight = { enabled = true },
|
||||
indent = { enabled = true },
|
||||
})
|
||||
end,
|
||||
}
|
12
.config/nvim/lua/plugins/rustaceanvim.lua
Normal file
12
.config/nvim/lua/plugins/rustaceanvim.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"mrcjkb/rustaceanvim",
|
||||
version = "^5",
|
||||
lazy = false,
|
||||
config = function()
|
||||
vim.g.rustaceanvim = {
|
||||
tools = {
|
||||
enable_clippy = false,
|
||||
},
|
||||
}
|
||||
end
|
||||
}
|
93
.config/nvim/lua/plugins/theme.lua
Normal file
93
.config/nvim/lua/plugins/theme.lua
Normal file
|
@ -0,0 +1,93 @@
|
|||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "macchiato",
|
||||
transparent_background = true,
|
||||
})
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end
|
||||
}
|
||||
|
||||
-- return {
|
||||
-- "folke/tokyonight.nvim",
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme("tokyonight-storm")
|
||||
-- end,
|
||||
-- opts = {},
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- "ellisonleao/gruvbox.nvim",
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- require("gruvbox").setup({
|
||||
-- contrast = "hard",
|
||||
-- transparent_mode = true,
|
||||
-- })
|
||||
-- vim.cmd.colorscheme("gruvbox")
|
||||
-- end,
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- "akinsho/horizon.nvim",
|
||||
-- version = "*",
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme("horizon")
|
||||
-- vim.o.background = "dark"
|
||||
-- end
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- 'f4z3r/gruvbox-material.nvim',
|
||||
-- name = 'gruvbox-material',
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- opts = {
|
||||
-- contrast = "hard",
|
||||
-- enable_bold = 1,
|
||||
-- ui_contrast = "high"
|
||||
-- },
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- "Shatur/neovim-ayu",
|
||||
-- config = function()
|
||||
-- require("ayu").setup({
|
||||
-- mirage = false,
|
||||
-- terminal = true,
|
||||
-- })
|
||||
-- vim.cmd.colorscheme("ayu-dark")
|
||||
-- end
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- 'ray-x/aurora',
|
||||
-- init = function()
|
||||
-- vim.g.aurora_italic = 0
|
||||
-- vim.g.aurora_transparent = 1
|
||||
-- vim.g.aurora_bold = 1
|
||||
-- end,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme "aurora"
|
||||
-- end
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- "sainnhe/everforest",
|
||||
-- config = function()
|
||||
-- vim.g.everforest_transparent_background = 2
|
||||
-- vim.g.everforest_float_style = "dim"
|
||||
-- vim.g.everforest_diagnostic_text_highlight = 1
|
||||
-- vim.g.everforest_diagnostic_line_highlight = 1
|
||||
-- vim.g.everforest_diagnostic_virtual_text = "highlighted"
|
||||
-- vim.g.everforest_dim_inactive_windows = 1
|
||||
-- vim.g.everforest_ui_contrast = "high"
|
||||
-- vim.g.everforest_better_performans = 1
|
||||
-- vim.cmd.colorscheme("everforest")
|
||||
-- end
|
||||
-- }
|
3
.config/nvim/lua/plugins/yazi.lua
Normal file
3
.config/nvim/lua/plugins/yazi.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"mikavilpas/yazi.nvim"
|
||||
}
|
23
.config/nvim/spell/en.utf-8.add
Normal file
23
.config/nvim/spell/en.utf-8.add
Normal file
|
@ -0,0 +1,23 @@
|
|||
Ahmet
|
||||
Kaan
|
||||
Gümüş
|
||||
github
|
||||
linkedin
|
||||
tahinli
|
||||
ahmetkaangumus
|
||||
Erciyes
|
||||
com
|
||||
blockchain
|
||||
WebSocket
|
||||
Radioxide
|
||||
radioxide
|
||||
tcp
|
||||
udp
|
||||
NAT
|
||||
IPv4
|
||||
ReLU
|
||||
JWT
|
||||
Postgres
|
||||
codeberg
|
||||
org
|
||||
png
|
BIN
.config/nvim/spell/en.utf-8.add.spl
Normal file
BIN
.config/nvim/spell/en.utf-8.add.spl
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue