mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 06:24:42 -05:00
feat(init): first init
This commit is contained in:
37
lua/config/keymap.lua
Normal file
37
lua/config/keymap.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
-- Clear search if in NORMAL mode
|
||||
vim.keymap.set('n', "<Esc>", "<CMD>noh<CR><Esc>", { silent = true, desc = "Clear search" })
|
||||
|
||||
-- Add Shift+Tab support
|
||||
vim.keymap.set("n", "<Tab>", ">>", { silent = true })
|
||||
vim.keymap.set("n", "<S-Tab>", "<<", { silent = true })
|
||||
vim.keymap.set("v", "<Tab>", ">gv", { silent = true })
|
||||
vim.keymap.set("v", "<S-Tab>", "<gv", { silent = true })
|
||||
vim.keymap.set("i", "<S-Tab>", "<C-d>", { silent = true })
|
||||
|
||||
-- File tree keybinds
|
||||
vim.keymap.set("n", "<D-b>", "<CMD>Neotree toggle<CR>", { silent = true, desc = "Open file tree" })
|
||||
vim.keymap.set("n", "<D-S-e>", "<CMD>Neotree focus<CR>", { silent = true, desc = "Focus on file tree" })
|
||||
|
||||
-- Telescope keybinds
|
||||
vim.keymap.set("n", "<D-p>", "<CMD>Telescope find_files<CR>", { silent = true, desc = "Open fuzzy finder" })
|
||||
|
||||
-- Tabs
|
||||
vim.keymap.set("n", "<A-Tab>", "<CMD>BufferNext<CR>", { silent = true, desc = "Cycle to next tab"})
|
||||
vim.keymap.set("n", "<A-S-Tab>", "<CMD>BufferPrevious<CR>", { silent = true, desc = "Cycle to previous tab" })
|
||||
vim.keymap.set("n", "<A-w>", "<CMD>BufferClose<CR>", { silent = true, desc = "Close tab" })
|
||||
|
||||
-- File manager
|
||||
vim.keymap.set("n", "<D-o>", "<CMD>Oil<CR>", { silent = true , desc = "Open parent directory" })
|
||||
|
||||
-- Comment toggle
|
||||
vim.keymap.set("n", "<D-/>", "gcc", { remap = true, desc = "Toggle comment" })
|
||||
vim.keymap.set("v", "<D-/>", "gc", { remap = true, desc = "Toggle comment" })
|
||||
vim.keymap.set("i", "<D-/>", "<C-o>gcc", { remap = true, desc = "Toggle comment" })
|
||||
|
||||
-- Small text shortcuts
|
||||
vim.keymap.set("i", "<D-Del>", "<C-u>", { desc = "Clear Line" })
|
||||
vim.keymap.set("i", "<A-BS>", "<C-w>", { desc = "Delete word backwards" })
|
||||
|
||||
-- Terminal
|
||||
vim.keymap.set({ "n", "i", "v", "t" }, "<D-y>", "<CMD>ToggleTerm<CR>", { remap = true, silent = true, desc = "Toggle terminal" })
|
||||
|
||||
41
lua/config/lazy.lua
Normal file
41
lua/config/lazy.lua
Normal file
@@ -0,0 +1,41 @@
|
||||
-- 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.opt.relativenumber = true
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = "\\"
|
||||
vim.o.foldenable = true
|
||||
|
||||
-- Setup lazy.nvim
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
{ import = "plugins" },
|
||||
},
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "nord" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = true },
|
||||
})
|
||||
29
lua/config/plugin/comment.lua
Normal file
29
lua/config/plugin/comment.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
require("Comment").setup({
|
||||
-- Add a space b/w comment and the line
|
||||
padding = true,
|
||||
-- Whether the cursor should stay at its position
|
||||
sticky = true,
|
||||
-- Lines to be ignored while (un)comment
|
||||
ignore = nil,
|
||||
-- LHS of toggle mappings in NORMAL mode
|
||||
toggler = {
|
||||
line = 'gcc', -- Line-comment toggle keymap
|
||||
block = 'gbc', -- Block-comment toggle keymap
|
||||
},
|
||||
-- LHS of operator-pending mappings in NORMAL and VISUAL mode
|
||||
opleader = {
|
||||
line = 'gc', -- Line-comment keymap
|
||||
block = 'gb', -- Block-comment keymap
|
||||
},
|
||||
-- LHS of extra mappings
|
||||
extra = {
|
||||
above = 'gcO', -- Add comment on the line above
|
||||
below = 'gco', -- Add comment on the line below
|
||||
eol = 'gcA', -- Add comment at the end of line
|
||||
},
|
||||
-- Enable keybindings
|
||||
mappings = {
|
||||
basic = true, -- Operator-pending mapping; `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}`
|
||||
extra = true, -- Extra mapping; `gco`, `gcO`, `gcA`
|
||||
},
|
||||
})
|
||||
27
lua/config/plugin/neo-tree.lua
Normal file
27
lua/config/plugin/neo-tree.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
require("neo-tree").setup({
|
||||
close_if_last_window = true,
|
||||
hijack_netrw_behavior = "disabled",
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
hide_gitignored = true,
|
||||
hide_hidden = true,
|
||||
},
|
||||
follow_current_file = { enabled = true },
|
||||
},
|
||||
git_status = {
|
||||
enable = true,
|
||||
},
|
||||
window = {
|
||||
position = "left",
|
||||
auto_expand_width = false,
|
||||
hijack_netrw_behavior = "disabled",
|
||||
width = 35,
|
||||
mappings = {
|
||||
["<space>"] = "toggle_node",
|
||||
["<2-LeftMouse>"] = "open",
|
||||
["e"] = function() vim.api.nvim_exec("Neotree focus filesystem", true) end,
|
||||
["g"] = function() vim.api.nvim_exec("Neotree focus git_status", true) end,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
10
lua/config/plugin/oil.lua
Normal file
10
lua/config/plugin/oil.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
require("oil").setup({
|
||||
default_file_explorer = true,
|
||||
columns = {
|
||||
"icon",
|
||||
},
|
||||
keymaps = {
|
||||
["g."] = { "actions.toggle_hidden", mode = "n"}
|
||||
}
|
||||
|
||||
})
|
||||
73
lua/config/plugin/render-markdown.lua
Normal file
73
lua/config/plugin/render-markdown.lua
Normal file
@@ -0,0 +1,73 @@
|
||||
require("render-markdown").setup({
|
||||
completions = { lsp = { enabled = true } },
|
||||
|
||||
heading = {
|
||||
enabled = true,
|
||||
sign = false,
|
||||
icons = { " ", " ", " ", " ", " ", " " },
|
||||
signs = { "▶"},
|
||||
left_pad = 0,
|
||||
right_pad = 0,
|
||||
width = "full",
|
||||
min_width = 0,
|
||||
border = true,
|
||||
border_virtual = true,
|
||||
above = "▄",
|
||||
below = "▀",
|
||||
},
|
||||
|
||||
code = {
|
||||
enabled = true,
|
||||
sign = true,
|
||||
style = "full",
|
||||
position = "left",
|
||||
language_pad = 2,
|
||||
disable_background = { "diff" },
|
||||
width = "full",
|
||||
left_pad = 0,
|
||||
right_pad = 0,
|
||||
min_width = 0,
|
||||
border = "thin",
|
||||
above = "▄",
|
||||
below = "▀",
|
||||
highlight = "RenderMarkdownCode",
|
||||
highlight_inline = "RenderMarkdownCodeInline",
|
||||
},
|
||||
|
||||
win_options = {
|
||||
conceallevel = {
|
||||
default = vim.o.conceallevel,
|
||||
rendered = 3,
|
||||
},
|
||||
concealcursor = {
|
||||
default = vim.o.concealcursor,
|
||||
rendered = "n",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
-- Fix tab behavior in markdown files
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "markdown",
|
||||
callback = function()
|
||||
-- Override tab mapping in markdown files
|
||||
vim.keymap.set("i", "<Tab>", function()
|
||||
-- Check if we're in a code block
|
||||
local line = vim.api.nvim_get_current_line()
|
||||
local col = vim.api.nvim_win_get_cursor(0)[2]
|
||||
|
||||
-- If we're at the beginning of a line or after whitespace, insert tab
|
||||
if col == 0 or line:sub(1, col):match("^%s*$") then
|
||||
return "<Tab>"
|
||||
else
|
||||
-- Otherwise, let completion handle it if available
|
||||
if vim.fn.pumvisible() == 1 then
|
||||
return "<C-n>"
|
||||
else
|
||||
return "<Tab>"
|
||||
end
|
||||
end
|
||||
end, { expr = true, buffer = true })
|
||||
end,
|
||||
})
|
||||
|
||||
49
lua/config/plugin/statusbar.lua
Normal file
49
lua/config/plugin/statusbar.lua
Normal file
@@ -0,0 +1,49 @@
|
||||
require("lualine").setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "auto",
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
disabled_filetypes = {
|
||||
statusline = { "NvimTree", "neo-tree", "alpha", "dashboard" },
|
||||
winbar = { "NvimTree", "neo-tree", "alpha", "dashboard" },
|
||||
},
|
||||
ignore_focus = { "NvimTree", "neo-tree" },
|
||||
always_divide_middle = true,
|
||||
globalstatus = true, -- This makes lualine span the entire bottom
|
||||
refresh = {
|
||||
statusline = 1000,
|
||||
tabline = 1000,
|
||||
winbar = 1000,
|
||||
}
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" }, -- Shows full text like "NORMAL", "INSERT", "VISUAL"
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = {
|
||||
"filename",
|
||||
{
|
||||
function()
|
||||
return vim.b.table_mode_active == 1 and "[TABLE]" or ""
|
||||
end,
|
||||
color = { fg = "#98c379" }, -- Green color
|
||||
},
|
||||
},
|
||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" }
|
||||
},
|
||||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
lualine_b = {},
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = { "location" },
|
||||
lualine_y = {},
|
||||
lualine_z = {}
|
||||
},
|
||||
tabline = {},
|
||||
winbar = {},
|
||||
inactive_winbar = {},
|
||||
extensions = { "nvim-tree", "neo-tree" }
|
||||
}
|
||||
|
||||
5
lua/config/plugin/telescope.lua
Normal file
5
lua/config/plugin/telescope.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
require("telescope").setup({
|
||||
defaults = {
|
||||
file_ignore_patterns = { "node_modules", ".git/" },
|
||||
},
|
||||
})
|
||||
27
lua/config/plugin/treesitter.lua
Normal file
27
lua/config/plugin/treesitter.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = {
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"lua",
|
||||
"python",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"html",
|
||||
"css",
|
||||
"json",
|
||||
"yaml",
|
||||
"bash",
|
||||
"vim",
|
||||
"c",
|
||||
"cpp",
|
||||
"lua",
|
||||
"go",
|
||||
},
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = { "markdown" },
|
||||
},
|
||||
indent = {
|
||||
enable = true,
|
||||
},
|
||||
})
|
||||
22
lua/config/plugin/ufo.lua
Normal file
22
lua/config/plugin/ufo.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
-- Basic fold UI
|
||||
vim.o.foldcolumn = '1'
|
||||
vim.o.foldlevel = 99
|
||||
vim.o.foldlevelstart = 99
|
||||
vim.o.foldenable = true
|
||||
|
||||
-- Triangles for folds
|
||||
vim.opt.fillchars = {
|
||||
foldopen = "▼",
|
||||
foldclose = "▶",
|
||||
foldsep = " ",
|
||||
}
|
||||
|
||||
require("ufo").setup({
|
||||
provider_selector = function(bufnr, filetype, buftype)
|
||||
if filetype == "markdown" then
|
||||
return { "treesitter", "indent" }
|
||||
end
|
||||
return { "lsp", "indent" }
|
||||
end,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user