{ ... }: { programs.nixvim = { enable = true; viAlias = true; vimAlias = true; performance.byteCompileLua.enable = true; clipboard.providers.wl-copy.enable = true; globals.mapleader = " "; colorschemes.catppuccin = { enable = true; settings = { flavour = "frappe"; }; }; opts = { smartindent = false; relativenumber = true; clipboard = "unnamedplus"; }; files = { "ftplugin/nix.lua" = { opts = { expandtab = true; shiftwidth = 2; tabstop = 2; }; }; }; autoCmd = [{ event = [ "BufWritePre" ]; callback = { __raw = '' function() vim.lsp.buf.format { async = false } end ''; }; desc = "Auto format buffer before save using LSP"; }]; keymaps = [ { action = "Telescope find_files"; key = "ff"; options = { desc = "Find files"; }; } { action = "Telescope projects"; key = "fp"; options = { desc = "Find projects"; }; } { action = "Neotree toggle"; key = "ft"; options = { desc = "Toggle neo-tree"; }; } { action = '' lua vim.lsp.buf.code_action({ apply = true }) ''; key = "lc"; options = { desc = "Apply code actions"; }; } { action = '' lua vim.lsp.buf.formatting() ''; key = "lf"; options = { desc = "Format buffer"; }; } ]; plugins = { alpha = { enable = true; layout = [ { type = "padding"; val = 2; } { opts = { hl = "Keyword"; position = "center"; }; type = "text"; val = [ "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⡀⠒⠒⠦⣄⡀⠀⠀⠀⠀⠀⠀⠀" "⠀⠀⠀⠀⠀⢀⣤⣶⡾⠿⠿⠿⠿⣿⣿⣶⣦⣄⠙⠷⣤⡀⠀⠀⠀⠀" "⠀⠀⠀⣠⡾⠛⠉⠀⠀⠀⠀⠀⠀⠀⠈⠙⠻⣿⣷⣄⠘⢿⡄⠀⠀⠀" "⠀⢀⡾⠋⠀⠀⠀⠀⠀⠀⠀⠀⠐⠂⠠⢄⡀⠈⢿⣿⣧⠈⢿⡄⠀⠀" "⢀⠏⠀⠀⠀⢀⠄⣀⣴⣾⠿⠛⠛⠛⠷⣦⡙⢦⠀⢻⣿⡆⠘⡇⠀⠀" "⠀⠀⠀⠀⡐⢁⣴⡿⠋⢀⠠⣠⠤⠒⠲⡜⣧⢸⠄⢸⣿⡇⠀⡇⠀⠀" "⠀⠀⠀⡼⠀⣾⡿⠁⣠⢃⡞⢁⢔⣆⠔⣰⠏⡼⠀⣸⣿⠃⢸⠃⠀⠀" "⠀⠀⢰⡇⢸⣿⡇⠀⡇⢸⡇⣇⣀⣠⠔⠫⠊⠀⣰⣿⠏⡠⠃⠀⠀⢀" "⠀⠀⢸⡇⠸⣿⣷⠀⢳⡈⢿⣦⣀⣀⣀⣠⣴⣾⠟⠁⠀⠀⠀⠀⢀⡎" "⠀⠀⠘⣷⠀⢻⣿⣧⠀⠙⠢⠌⢉⣛⠛⠋⠉⠀⠀⠀⠀⠀⠀⣠⠎⠀" "⠀⠀⠀⠹⣧⡀⠻⣿⣷⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⡾⠃⠀⠀" "⠀⠀⠀⠀⠈⠻⣤⡈⠻⢿⣿⣷⣦⣤⣤⣤⣤⣤⣴⡾⠛⠉⠀⠀⠀⠀" "⠀⠀⠀⠀⠀⠀⠈⠙⠶⢤⣈⣉⠛⠛⠛⠛⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀" "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀" ]; } { type = "padding"; val = 2; } { type = "group"; val = let mkButton = shortcut: cmd: val: hl: { type = "button"; inherit val; opts = { inherit hl shortcut; keymap = [ "n" shortcut cmd { } ]; position = "center"; cursor = 0; width = 40; align_shortcut = "right"; hl_shortcut = "Keyword"; }; }; in [ (mkButton "f" ":Telescope find_files" " Find File" "Operator") (mkButton "p" ":Telescope projects" " Projects" "Operator") (mkButton "q" "qa" "󰈆 Quit" "Error") ]; } ]; }; lualine = { enable = true; extensions = [ "neo-tree" ]; globalstatus = true; }; treesitter = { enable = true; settings = { highlight.enable = true; indent.enable = true; }; }; treesitter-context.enable = true; indent-blankline.enable = true; lsp = { enable = true; servers = { gopls.enable = true; nixd.enable = true; lua-ls.enable = true; }; }; cmp = { enable = true; autoEnableSources = true; settings = { mapping = { "" = "cmp.mapping.complete()"; "" = "cmp.mapping.scroll_docs(-4)"; "" = "cmp.mapping.close()"; "" = "cmp.mapping.scroll_docs(4)"; "" = "cmp.mapping.confirm({ select = true })"; "" = "cmp.mapping(cmp.mapping.select_prev_item(), {'i', 's'})"; "" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})"; }; sources = [ { name = "nvim_lsp"; } { name = "path"; } { name = "buffer"; } ]; }; }; cmp-nvim-lsp.enable = true; cmp-nvim-lsp-signature-help.enable = true; telescope = { enable = true; }; neo-tree = { enable = true; useDefaultMappings = true; }; nvim-autopairs.enable = true; project-nvim = { enable = true; enableTelescope = true; }; which-key = { enable = true; settings = { delay = 200; expand = 1; notify = false; preset = false; replace = { desc = [ [ "" "SPACE" ] [ "" "SPACE" ] [ "<[cC][rR]>" "RETURN" ] [ "<[tT][aA][bB]>" "TAB" ] [ "<[bB][sS]>" "BACKSPACE" ] ]; }; spec = [ { __unkeyed = "f"; group = "Find"; } { __unkeyed = "l"; group = "LSP"; } ]; }; }; tmux-navigator.enable = true; }; }; }