feat: nixvim configuration init
All checks were successful
check-commits / Check commits (pull_request) Successful in 9s
build-flake / build (pull_request) Successful in 2m54s

This commit is contained in:
2025-10-23 19:50:10 +03:00
parent 0e0e75eeb6
commit d0011ce867
62 changed files with 1150 additions and 613 deletions

View File

@@ -1,9 +1,31 @@
{ pkgs }:
pkgs.stdenv.mkDerivation {
name = "nvim-config";
src = ./src;
installPhase = ''
mkdir -p $out/
cp -r . $out/
'';
{
imports = [
./options.nix
./modules/colorschemes/catppuccin.nix
./modules/plugins/lsp
./modules/plugins/blink-cmp.nix
./modules/plugins/bufferline.nix
./modules/plugins/conform-nvim.nix
./modules/plugins/fzf-lua.nix
./modules/plugins/gitsigns.nix
./modules/plugins/lazygit.nix
./modules/plugins/mini.nix
./modules/plugins/neotree.nix
./modules/plugins/oil.nix
./modules/plugins/snacks.nix
./modules/plugins/tmux-navigator.nix
./modules/plugins/treesitter.nix
./modules/plugins/undotree.nix
./modules/plugins/which-key.nix
];
performance.byteCompileLua.enable = true;
performance.byteCompileLua.configs = true;
performance.byteCompileLua.initLua = true;
performance.byteCompileLua.luaLib = true;
performance.byteCompileLua.nvimRuntime = true;
performance.byteCompileLua.plugins = true;
}

View File

@@ -0,0 +1,14 @@
{
colorschemes = {
catppuccin = {
enable = true;
settings = {
flavour = "macchiato";
transparent_background = false;
dim_inactive = {
enabled = true;
};
};
};
};
}

View File

@@ -0,0 +1,3 @@
{
plugins.blink-cmp.enable = true;
}

View File

@@ -0,0 +1,46 @@
{
plugins.bufferline.enable = true;
keymaps = [
{
mode = "n";
key = "<Tab>";
action = "<cmd>BufferLineCycleNext<cr>";
options = {
desc = "Cycle to next buffer";
};
}
{
mode = "n";
key = "<S-Tab>";
action = "<cmd>BufferLineCyclePrev<cr>";
options = {
desc = "Cycle to previous buffer";
};
}
{
mode = "n";
key = "<S-l>";
action = "<cmd>BufferLineCycleNext<cr>";
options = {
desc = "Cycle to next buffer";
};
}
{
mode = "n";
key = "<S-h>";
action = "<cmd>BufferLineCyclePrev<cr>";
options = {
desc = "Cycle to previous buffer";
};
}
{
mode = "n";
key = "<leader>bd";
action = "<cmd>bdelete<cr>";
options = {
desc = "Delete buffer";
};
}
];
}

View File

@@ -0,0 +1,3 @@
{
plugins.conform-nvim.enable = true;
}

View File

@@ -0,0 +1,30 @@
{ lib, pkgs, ... }:
{
plugins.fzf-lua = {
enable = true;
# keymaps = {
# "<leader>sf" = {
# action = "files";
# options = {
# desc = "Fzf-Lua File Grep";
# };
# };
# "<leader>sg" = {
# action = "live_grep_native";
# options = {
# desc = "Fzf-Lua File Grep";
# };
# };
# "<leader>sv" = {
# action = "git_files";
# # settings = {
# # previewers.cat.cmd = lib.getExe' pkgs.coreutils "cat";
# # winopts.height = 0.5;
# # };
# options = {
# desc = "Fzf-Lua VCS Grep (Git)";
# };
# };
# };
};
}

View File

@@ -0,0 +1,9 @@
{
plugins.gitsigns = {
enable = true;
settings = {
current_line_blame = true;
current_line_blame_formatter = " <author>, <committer_time:%R> <summary>";
};
};
}

View File

@@ -0,0 +1,3 @@
{
plugins.lazygit.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.ansiblels.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.bashls.enable = true;
}

View File

@@ -0,0 +1,75 @@
{ lib, ... }:
{
imports = [
# Default configurations for lsp servers
./lspconfig.nix
./ansiblels.nix
./bashls.nix
./docker_compose_language_server.nix
./dockerls.nix
./gopls.nix
./helm_ls.nix
./jdtls.nix
./jsonls.nix
./jsonnet_ls.nix
./just.nix
./lua_ls.nix
./marksman.nix
./nixd.nix
./ruff.nix
./tflint.nix
./yamlls.nix
];
# lsp.keymaps = [
# {
# key = "gd";
# lspBufAction = "definition";
# }
# {
# key = "gD";
# lspBufAction = "references";
# }
# {
# key = "gt";
# lspBufAction = "type_definition";
# }
# {
# key = "gi";
# lspBufAction = "implementation";
# }
# {
# key = "K";
# lspBufAction = "hover";
# }
# {
# action = lib.nixvim.mkRaw "function() vim.diagnostic.jump({ count=-1, float=true }) end";
# key = "<leader>k";
# }
# {
# action = lib.nixvim.mkRaw "function() vim.diagnostic.jump({ count=1, float=true }) end";
# key = "<leader>j";
# }
# {
# action = "<CMD>LspStop<Enter>";
# key = "<leader>lx";
# }
# {
# action = "<CMD>LspStart<Enter>";
# key = "<leader>ls";
# }
# {
# action = "<CMD>LspRestart<Enter>";
# key = "<leader>lr";
# }
# # {
# # action = lib.nixvim.mkRaw "require('telescope.builtin').lsp_definitions";
# # key = "gd";
# # }
# {
# action = "<CMD>Lspsaga hover_doc<Enter>";
# key = "K";
# }
# ];
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.docker_compose_language_service.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.dockerls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.gopls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.helm_ls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.jdtls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.jsonls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.jsonnet_ls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.just.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
plugins.lspconfig.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.lua_ls.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.marksman.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.nixd.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.ruff.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.tflint.enable = true;
}

View File

@@ -0,0 +1,3 @@
{
lsp.servers.yamlls.enable = true;
}

View File

@@ -0,0 +1,11 @@
{
plugins.mini = {
enable = true;
mockDevIcons = true;
modules = {
icons = { };
comment = { };
diff = { };
};
};
}

View File

@@ -0,0 +1,32 @@
{
plugins.neo-tree = {
enable = true;
enableDiagnostics = true;
enableGitStatus = true;
enableModifiedMarkers = true;
enableRefreshOnWrite = true;
closeIfLastWindow = true;
popupBorderStyle = "rounded"; # Type: null or one of “NC”, “double”, “none”, “rounded”, “shadow”, “single”, “solid” or raw lua code
buffers = {
bindToCwd = false;
followCurrentFile = {
enabled = true;
};
};
window = {
width = 40;
height = 15;
autoExpandWidth = false;
mappings = {
"<space>" = "none";
};
};
};
keymaps = [
{
action = "<cmd>Neotree toggle<CR>";
key = "<leader>e";
}
];
}

View File

@@ -0,0 +1,14 @@
{
plugins.oil.enable = true;
keymaps = [
{
mode = "n";
action = "<cmd>Oil<CR>";
key = "<leader>o";
options = {
desc = "Open [O]il";
};
}
];
}

View File

@@ -0,0 +1,491 @@
{ lib, ... }:
{
plugins.snacks = {
enable = true;
settings = {
bigfile.enabled = true;
notifier.enabled = true;
quickfile.enabled = true;
statuscolumn.enabled = true;
words.enabled = true;
lazygit.enabled = true;
picker.enabled = true;
};
};
keymaps = [
{
key = "<leader><space>";
action = lib.nixvim.mkRaw "function() Snacks.picker.smart() end";
options = {
desc = "Smart Find Files";
};
}
{
key = "<leader>,";
action = lib.nixvim.mkRaw "function() Snacks.picker.buffers() end";
options = {
desc = "Buffers";
};
}
{
key = "<leader>/";
action = lib.nixvim.mkRaw "function() Snacks.picker.grep() end";
options = {
desc = "Grep";
};
}
{
key = "<leader>:";
action = lib.nixvim.mkRaw "function() Snacks.picker.command_history() end";
options = {
desc = "Command History";
};
}
{
key = "<leader>n";
action = lib.nixvim.mkRaw "function() Snacks.picker.notifications() end";
options = {
desc = "Notification History";
};
}
{
key = "<leader>e";
action = lib.nixvim.mkRaw "function() Snacks.explorer() end";
options = {
desc = "File Explorer";
};
}
{
key = "<leader>fb";
action = lib.nixvim.mkRaw "function() Snacks.picker.buffers() end";
options = {
desc = "Buffers";
};
}
{
key = "<leader>fc";
action = lib.nixvim.mkRaw "function() Snacks.picker.files({ cwd = vim.fn.stdpath(\"config\") }) end";
options = {
desc = "Find Config File";
};
}
{
key = "<leader>ff";
action = lib.nixvim.mkRaw "function() Snacks.picker.files() end";
options = {
desc = "Find Files";
};
}
{
key = "<leader>fg";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_files() end";
options = {
desc = "Find Git Files";
};
}
{
key = "<leader>fp";
action = lib.nixvim.mkRaw "function() Snacks.picker.projects() end";
options = {
desc = "Projects";
};
}
{
key = "<leader>fr";
action = lib.nixvim.mkRaw "function() Snacks.picker.recent() end";
options = {
desc = "Recent";
};
}
{
key = "<leader>gb";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_branches() end";
options = {
desc = "Git Branches";
};
}
{
key = "<leader>gl";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_log() end";
options = {
desc = "Git Log";
};
}
{
key = "<leader>gL";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_log_line() end";
options = {
desc = "Git Log Line";
};
}
{
key = "<leader>gs";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_status() end";
options = {
desc = "Git Status";
};
}
{
key = "<leader>gS";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_stash() end";
options = {
desc = "Git Stash";
};
}
{
key = "<leader>gd";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_diff() end";
options = {
desc = "Git Diff (Hunks)";
};
}
{
key = "<leader>gf";
action = lib.nixvim.mkRaw "function() Snacks.picker.git_log_file() end";
options = {
desc = "Git Log File";
};
}
{
key = "<leader>sb";
action = lib.nixvim.mkRaw "function() Snacks.picker.lines() end";
options = {
desc = "Buffer Lines";
};
}
{
key = "<leader>sB";
action = lib.nixvim.mkRaw "function() Snacks.picker.grep_buffers() end";
options = {
desc = "Grep Open Buffers";
};
}
{
key = "<leader>sg";
action = lib.nixvim.mkRaw "function() Snacks.picker.grep() end";
options = {
desc = "Grep";
};
}
{
key = "<leader>sw";
action = lib.nixvim.mkRaw "function() Snacks.picker.grep_word() end";
options = {
desc = "Visual selection or word";
};
mode = "n";
}
{
key = "<leader>s\"";
action = lib.nixvim.mkRaw "function() Snacks.picker.registers() end";
options = {
desc = "Registers";
};
}
{
key = "<leader>s/";
action = lib.nixvim.mkRaw "function() Snacks.picker.search_history() end";
options = {
desc = "Search History";
};
}
{
key = "<leader>sa";
action = lib.nixvim.mkRaw "function() Snacks.picker.autocmds() end";
options = {
desc = "Autocmds";
};
}
{
key = "<leader>sb";
action = lib.nixvim.mkRaw "function() Snacks.picker.lines() end";
options = {
desc = "Buffer Lines";
};
}
{
key = "<leader>sc";
action = lib.nixvim.mkRaw "function() Snacks.picker.command_history() end";
options = {
desc = "Command History";
};
}
{
key = "<leader>sC";
action = lib.nixvim.mkRaw "function() Snacks.picker.commands() end";
options = {
desc = "Commands";
};
}
{
key = "<leader>sd";
action = lib.nixvim.mkRaw "function() Snacks.picker.diagnostics() end";
options = {
desc = "Diagnostics";
};
}
{
key = "<leader>sD";
action = lib.nixvim.mkRaw "function() Snacks.picker.diagnostics_buffer() end";
options = {
desc = "Buffer Diagnostics";
};
}
{
key = "<leader>sh";
action = lib.nixvim.mkRaw "function() Snacks.picker.help() end";
options = {
desc = "Help Pages";
};
}
{
key = "<leader>sH";
action = lib.nixvim.mkRaw "function() Snacks.picker.highlights() end";
options = {
desc = "Highlights";
};
}
{
key = "<leader>si";
action = lib.nixvim.mkRaw "function() Snacks.picker.icons() end";
options = {
desc = "Icons";
};
}
{
key = "<leader>sj";
action = lib.nixvim.mkRaw "function() Snacks.picker.jumps() end";
options = {
desc = "Jumps";
};
}
{
key = "<leader>sk";
action = lib.nixvim.mkRaw "function() Snacks.picker.keymaps() end";
options = {
desc = "Keymaps";
};
}
{
key = "<leader>sl";
action = lib.nixvim.mkRaw "function() Snacks.picker.loclist() end";
options = {
desc = "Location List";
};
}
{
key = "<leader>sm";
action = lib.nixvim.mkRaw "function() Snacks.picker.marks() end";
options = {
desc = "Marks";
};
}
{
key = "<leader>sM";
action = lib.nixvim.mkRaw "function() Snacks.picker.man() end";
options = {
desc = "Man Pages";
};
}
{
key = "<leader>sp";
action = lib.nixvim.mkRaw "function() Snacks.picker.lazy() end";
options = {
desc = "Search for Plugin Spec";
};
}
{
key = "<leader>sq";
action = lib.nixvim.mkRaw "function() Snacks.picker.qflist() end";
options = {
desc = "Quickfix List";
};
}
{
key = "<leader>sR";
action = lib.nixvim.mkRaw "function() Snacks.picker.resume() end";
options = {
desc = "Resume";
};
}
{
key = "<leader>su";
action = lib.nixvim.mkRaw "function() Snacks.picker.undo() end";
options = {
desc = "Undo History";
};
}
{
key = "<leader>uC";
action = lib.nixvim.mkRaw "function() Snacks.picker.colorschemes() end";
options = {
desc = "Colorschemes";
};
}
{
key = "gd";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_definitions() end";
options = {
desc = "Goto Definition";
};
}
{
key = "gD";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_declarations() end";
options = {
desc = "Goto Declaration";
};
}
{
key = "gr";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_references() end";
options = {
desc = "References";
};
}
{
key = "gI";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_implementations() end";
options = {
desc = "Goto Implementation";
};
}
{
key = "gy";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_type_definitions() end";
options = {
desc = "Goto T[y]pe Definition";
};
}
{
key = "gai";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_incoming_calls() end";
options = {
desc = "C[a]lls Incoming";
};
}
{
key = "gao";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_outgoing_calls() end";
options = {
desc = "C[a]lls Outgoing";
};
}
{
key = "<leader>ss";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_symbols() end";
options = {
desc = "LSP Symbols";
};
}
{
key = "<leader>sS";
action = lib.nixvim.mkRaw "function() Snacks.picker.lsp_workspace_symbols() end";
options = {
desc = "LSP Workspace Symbols";
};
}
{
key = "<leader>z";
action = lib.nixvim.mkRaw "function() Snacks.zen() end";
options = {
desc = "Toggle Zen Mode";
};
}
{
key = "<leader>Z";
action = lib.nixvim.mkRaw "function() Snacks.zen.zoom() end";
options = {
desc = "Toggle Zoom";
};
}
{
key = "<leader>.";
action = lib.nixvim.mkRaw "function() Snacks.scratch() end";
options = {
desc = "Toggle Scratch Buffer";
};
}
{
key = "<leader>S";
action = lib.nixvim.mkRaw "function() Snacks.scratch.select() end";
options = {
desc = "Select Scratch Buffer";
};
}
{
key = "<leader>n";
action = lib.nixvim.mkRaw "function() Snacks.notifier.show_history() end";
options = {
desc = "Notification History";
};
}
{
key = "<leader>bd";
action = lib.nixvim.mkRaw "function() Snacks.bufdelete() end";
options = {
desc = "Delete Buffer";
};
}
{
key = "<leader>cR";
action = lib.nixvim.mkRaw "function() Snacks.rename.rename_file() end";
options = {
desc = "Rename File";
};
}
{
key = "<leader>gB";
action = lib.nixvim.mkRaw "function() Snacks.gitbrowse() end";
options = {
desc = "Git Browse";
};
mode = "n";
}
{
key = "<leader>gg";
action = lib.nixvim.mkRaw "function() Snacks.lazygit() end";
options = {
desc = "Lazygit";
};
}
{
key = "<leader>un";
action = lib.nixvim.mkRaw "function() Snacks.notifier.hide() end";
options = {
desc = "Dismiss All Notifications";
};
}
{
key = "<c-/>";
action = lib.nixvim.mkRaw "function() Snacks.terminal() end";
options = {
desc = "Toggle Terminal";
};
}
{
key = "<c-_>";
action = lib.nixvim.mkRaw "function() Snacks.terminal() end";
options = {
desc = "which_key_ignore";
};
}
{
key = "]]";
action = lib.nixvim.mkRaw "function() Snacks.words.jump(vim.v.count1) end";
options = {
desc = "Next Reference";
};
mode = "n";
}
{
key = "[[";
action = lib.nixvim.mkRaw "function() Snacks.words.jump(-vim.v.count1) end";
options = {
desc = "Prev Reference";
};
mode = "n";
}
];
}

View File

@@ -0,0 +1,3 @@
{
plugins.tmux-navigator.enable = true;
}

View File

@@ -0,0 +1,35 @@
{ pkgs, ... }:
{
plugins = {
treesitter = {
enable = true;
settings = {
indent = {
enable = true;
};
highlight = {
enable = true;
};
};
nixvimInjections = true;
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
treesitter-context = {
enable = false;
};
treesitter-textobjects = {
enable = true;
select = {
enable = true;
lookahead = true;
};
};
};
extraConfigLua = ''
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
'';
}

View File

@@ -0,0 +1,14 @@
{
plugins.undotree.enable = true;
keymaps = [
{
mode = "n";
key = "<leader>ut";
action = "<cmd>UndotreeToggle<CR>";
options = {
desc = "Undotree";
};
}
];
}

View File

@@ -0,0 +1,5 @@
{
plugins.which-key = {
enable = true;
};
}

115
config/options.nix Normal file
View File

@@ -0,0 +1,115 @@
{ pkgs, ... }:
{
globalOpts = {
# Line numbers
number = true;
relativenumber = true;
# Enable more colors (24-bit)
termguicolors = true;
# Have a better completion experience
completeopt = [
"menuone"
"noselect"
"noinsert"
];
# Always show the signcolumn, otherwise text would be shifted when displaying error icons
signcolumn = "yes:3";
# Enable mouse
mouse = "a";
# Search
ignorecase = true;
smartcase = true;
# Configure how new splits should be opened
splitright = true;
splitbelow = true;
list = true;
# NOTE: .__raw here means that this field is raw lua code
listchars.__raw = "{ tab = '» ', trail = '·', nbsp = '' }";
expandtab = true;
tabstop = 2;
shiftwidth = 2;
softtabstop = 0;
smarttab = true;
# Set encoding
encoding = "utf-8";
fileencoding = "utf-8";
# Save undo history
undofile = true;
swapfile = true;
backup = false;
autoread = true;
# Highlight the current line for cursor
cursorline = true;
# Show line and column when searching
ruler = true;
# Global substitution by default
gdefault = true;
# Start scrolling when the cursor is X lines away from the top/bottom
scrolloff = 5;
};
diagnostic.settings = {
update_in_insert = true;
severity_sort = true;
float = {
border = "rounded";
};
jump = {
severity.__raw = "vim.diagnostic.severity.WARN";
};
};
# userCommands = {
# Q.command = "q";
# Q.bang = true;
# Wq.command = "q";
# Wq.bang = true;
# WQ.command = "q";
# WQ.bang = true;
# W.command = "q";
# W.bang = true;
# };
globals.mapleader = ",";
# autoCmd = [
# {
# event = [ "VimEnter" ];
# callback = {
# __raw = "function() if vim.fn.argv(0) == '' then require('telescope.builtin').find_files() end end";
# };
# }
# {
# event = [ "VimEnter" ];
# command = "set relativenumber";
# }
# ];
#autoCmd = [
# {
# event = [ "BufEnter" "BufWinEnter" ];
# pattern = [ "*.md" "*.mdx" ];
# command = "MarkdownPreviewToggle";
# }
#];
# highlight = {
# Comment.fg = "#ff00ff";
# Comment.bg = "#000000";
# Comment.underline = true;
# Comment.bold = true;
# };
}

View File

@@ -1 +0,0 @@
/tmp/lazyvim-lazygit/config.yml

View File

@@ -1 +0,0 @@
/tmp/lazyvim-lazygit/state.yml

View File

@@ -1,15 +0,0 @@
{
"neodev": {
"library": {
"enabled": true,
"plugins": true
}
},
"neoconf": {
"plugins": {
"lua_ls": {
"enabled": true
}
}
}
}

View File

@@ -1,8 +0,0 @@
-- Configure symlinks needed by LazyVim
vim.fn.system({ "mkdir", "-p", os.getenv("HOME") .. "/.config/lazyvim/nvim" })
vim.fn.system({ "mkdir", "-p", os.getenv("HOME") .. "/.config/lazyvim/lazygit" })
vim.fn.system({ "ln", "-sfT", os.getenv("HOME") .. "/.config/lazyvim/nvim", "/tmp/lazyvim-nvim" })
vim.fn.system({ "ln", "-sfT", os.getenv("HOME") .. "/.config/lazyvim/lazygit", "/tmp/lazyvim-lazygit" })
-- Load lazyvim
require("config.lazy")

View File

@@ -1 +0,0 @@
/tmp/lazyvim-nvim/lazy-lock.json

View File

@@ -1 +0,0 @@
/tmp/lazyvim-nvim/lazyvim.json

View File

@@ -1,3 +0,0 @@
-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
-- Add any additional autocmds here

View File

@@ -1,3 +0,0 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here

View File

@@ -1,60 +0,0 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
-- bootstrap lazy.nvim
-- stylua: ignore
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require("lazy").setup({
spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- Blink currently not supported by all extras 2024-11-19 11:08
-- { import = "lazyvim.plugins.extras.coding.blink" },
{ import = "lazyvim.plugins.extras.editor.illuminate" },
{ import = "lazyvim.plugins.extras.editor.outline" },
{ import = "lazyvim.plugins.extras.editor.telescope" },
{ import = "lazyvim.plugins.extras.formatting.prettier" },
{ import = "lazyvim.plugins.extras.lang.ansible" },
{ import = "lazyvim.plugins.extras.lang.docker" },
{ import = "lazyvim.plugins.extras.lang.git" },
{ import = "lazyvim.plugins.extras.lang.go" },
{ import = "lazyvim.plugins.extras.lang.helm" },
{ import = "lazyvim.plugins.extras.lang.java" },
{ import = "lazyvim.plugins.extras.lang.json" },
{ import = "lazyvim.plugins.extras.lang.markdown" },
{ import = "lazyvim.plugins.extras.lang.nix" },
{ import = "lazyvim.plugins.extras.lang.python" },
{ import = "lazyvim.plugins.extras.lang.rust" },
{ import = "lazyvim.plugins.extras.lang.scala" },
{ import = "lazyvim.plugins.extras.lang.sql" },
{ import = "lazyvim.plugins.extras.lang.terraform" },
{ import = "lazyvim.plugins.extras.lang.toml" },
{ import = "lazyvim.plugins.extras.lang.typescript" },
{ import = "lazyvim.plugins.extras.lang.yaml" },
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
{ import = "lazyvim.plugins.extras.ui.mini-indentscope" },
{ import = "lazyvim.plugins.extras.ui.treesitter-context" },
{ import = "plugins.catppuccin" },
{ import = "plugins.lang.shell" },
{ import = "plugins.misc.tmux-navigator" },
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
lazy = false,
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
-- have outdated releases, which may break your Neovim install.
version = nil, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "catppuccin-macchiato" } },
checker = { enabled = true, frequency = 60 * 60 * 24 }, -- automatically check for plugin updates once per day
performance = {
cache = {
enabled = true,
},
},
})

View File

@@ -1,7 +0,0 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.g.mapleader = ","
vim.opt.number = true
vim.opt.relativenumber = false

View File

@@ -1,62 +0,0 @@
return {
"catppuccin/nvim",
lazy = true,
name = "catppuccin",
opts = {
flavour = "macchiato",
transparent_background = false,
integrations = {
aerial = true,
alpha = true,
cmp = true,
dashboard = true,
flash = true,
grug_far = true,
gitsigns = true,
headlines = true,
illuminate = true,
indent_blankline = { enabled = true },
leap = true,
lsp_trouble = true,
mason = true,
markdown = true,
mini = true,
native_lsp = {
enabled = true,
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
navic = { enabled = true, custom_bg = "lualine" },
neotest = true,
neotree = true,
noice = true,
notify = true,
semantic_tokens = true,
telescope = true,
treesitter = true,
treesitter_context = true,
which_key = true,
},
},
specs = {
{
"akinsho/bufferline.nvim",
optional = true,
opts = function(_, opts)
if (vim.g.colors_name or ""):find("catppuccin") then
opts.highlights = require("catppuccin.groups.integrations.bufferline").get()
end
end,
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-macchiato",
},
},
}

View File

@@ -1,41 +0,0 @@
return {
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
["nix"] = { "alejandra" },
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
nixd = {},
},
},
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, {
"nix",
})
end
end,
},
{
"nvimtools/none-ls.nvim",
optional = true,
opts = function(_, opts)
local null_ls = require("null-ls")
opts.sources = vim.list_extend(opts.sources or {}, {
null_ls.builtins.code_actions.statix,
null_ls.builtins.diagnostics.statix,
null_ls.builtins.formatting.alejandra,
})
end,
},
}

View File

@@ -1,47 +0,0 @@
return {
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, {
"shfmt",
"shellcheck",
"bash-language-server",
})
end,
},
{
"stevearc/conform.nvim",
event = { "BufWritePre" },
cmd = { "ConformInfo" },
opts = {
formatters_by_ft = {
["sh"] = { "shfmt" },
["command"] = { "shfmt" },
},
formatters = {
shfmt = {
prepend_args = { "-i", "2", "-ci" },
},
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
bashls = {},
},
},
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, {
"bash",
})
end
end,
},
}

View File

@@ -1,9 +0,0 @@
return {
-- Disable certain features if file is big
{
"LunarVim/bigfile.nvim",
opts = {
filesize = 0.5,
},
},
}

View File

@@ -1,17 +0,0 @@
return {
"christoomey/vim-tmux-navigator",
cmd = {
"TmuxNavigateLeft",
"TmuxNavigateDown",
"TmuxNavigateUp",
"TmuxNavigateRight",
"TmuxNavigatePrevious",
},
keys = {
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
},
}

View File

@@ -1,31 +0,0 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
config = function()
require("telescope").load_extension("fzf")
end,
},
opts = {
defaults = {
file_ignore_patterns = {
".git/",
"^node_modules/",
".cache",
},
},
pickers = {
live_grep = {
additional_args = { "-L" },
},
grep_string = {
additional_args = { "-L" },
},
find_files = {
hidden = true,
follow = true,
},
},
},
}

View File

@@ -1,10 +0,0 @@
return {
"folke/tokyonight.nvim",
opts = {
transparent = true,
styles = {
sidebars = "transparent",
floats = "transparent",
},
},
}

View File

@@ -1,6 +0,0 @@
return {
"chrisbra/Colorizer",
keys = {
{ "<leader>uR", "<cmd>ColorToggle<cr>", desc = "Toggle Colorizer" },
},
}

View File

@@ -1,6 +0,0 @@
return {
"mbbill/undotree",
keys = {
{ "<leader>u", "<cmd> UndotreeToggle <CR>", desc = "Toggle undotree", mode = { "n" } },
},
}

View File

@@ -1,3 +0,0 @@
indent_type = "Spaces"
indent_width = 2
column_width = 120