diff --git a/init.lua b/init.lua index 4cf2be20..565e016e 100644 --- a/init.lua +++ b/init.lua @@ -1,1046 +1,10 @@ ---[[ - -===================================================================== -==================== READ THIS BEFORE CONTINUING ==================== -===================================================================== -======== .-----. ======== -======== .----------------------. | === | ======== -======== |.-""""""""""""""""""-.| |-----| ======== -======== || || | === | ======== -======== || KICKSTART.NVIM || |-----| ======== -======== || || | === | ======== -======== || || |-----| ======== -======== ||:Tutor || |:::::| ======== -======== |'-..................-'| |____o| ======== -======== `"")----------------(""` ___________ ======== -======== /::::::::::| |::::::::::\ \ no mouse \ ======== -======== /:::========| |==hjkl==:::\ \ required \ ======== -======== '""""""""""""' '""""""""""""' '""""""""""' ======== -======== ======== -===================================================================== -===================================================================== - -What is Kickstart? - - Kickstart.nvim is *not* a distribution. - - Kickstart.nvim is a starting point for your own configuration. - The goal is that you can read every line of code, top-to-bottom, understand - what your configuration is doing, and modify it to suit your needs. - - Once you've done that, you can start exploring, configuring and tinkering to - make Neovim your own! That might mean leaving Kickstart just the way it is for a while - or immediately breaking it into modular pieces. It's up to you! - - If you don't know anything about Lua, I recommend taking some time to read through - a guide. One possible example which will only take 10-15 minutes: - - https://learnxinyminutes.com/docs/lua/ - - After understanding a bit more about Lua, you can use `:help lua-guide` as a - reference for how Neovim integrates Lua. - - :help lua-guide - - (or HTML version): https://neovim.io/doc/user/lua-guide.html - -Kickstart Guide: - - TODO: The very first thing you should do is to run the command `:Tutor` in Neovim. - - If you don't know what this means, type the following: - - - - : - - Tutor - - - - (If you already know the Neovim basics, you can skip this step.) - - Once you've completed that, you can continue working through **AND READING** the rest - of the kickstart init.lua. - - Next, run AND READ `:help`. - This will open up a help window with some basic information - about reading, navigating and searching the builtin help documentation. - - This should be the first place you go to look when you're stuck or confused - with something. It's one of my favorite Neovim features. - - MOST IMPORTANTLY, we provide a keymap "sh" to [s]earch the [h]elp documentation, - which is very useful when you're not exactly sure of what you're looking for. - - I have left several `:help X` comments throughout the init.lua - These are hints about where to find more information about the relevant settings, - plugins or Neovim features used in Kickstart. - - NOTE: Look for lines like this - - Throughout the file. These are for you, the reader, to help you understand what is happening. - Feel free to delete them once you know what you're doing, but they should serve as a guide - for when you are first encountering a few different constructs in your Neovim config. - -If you experience any errors while trying to install kickstart, run `:checkhealth` for more info. - -I hope you enjoy your Neovim journey, -- TJ - -P.S. You can delete this when you're done too. It's your config now! :) ---]] - --- Set as the leader key --- See `:help mapleader` --- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used) +-- Leader keys vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' - --- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = true --- [[ Setting options ]] --- See `:help vim.opt` --- NOTE: You can change these options as you wish! --- For more options, you can see `:help option-list` - --- Make line numbers default -vim.opt.number = true --- You can also add relative line numbers, to help with jumping. --- Experiment for yourself to see if you like it! -vim.opt.relativenumber = true - --- Enable mouse mode, can be useful for resizing splits for example! -vim.opt.mouse = '' - --- Don't show the mode, since it's already in the status line -vim.opt.showmode = false - --- Sync clipboard between OS and Neovim. --- Schedule the setting after `UiEnter` because it can increase startup-time. --- Remove this option if you want your OS clipboard to remain independent. --- See `:help 'clipboard'` -vim.schedule(function() - vim.opt.clipboard = 'unnamedplus' -end) - --- Enable break indent -vim.opt.breakindent = true - --- Save undo history -vim.opt.undofile = true - --- Case-insensitive searching UNLESS \C or one or more capital letters in the search term -vim.opt.ignorecase = true -vim.opt.smartcase = true - --- Keep signcolumn on by default -vim.opt.signcolumn = 'yes' - --- Decrease update time -vim.opt.updatetime = 250 - --- Decrease mapped sequence wait time --- Displays which-key popup sooner -vim.opt.timeoutlen = 300 - --- Configure how new splits should be opened -vim.opt.splitright = true -vim.opt.splitbelow = true - --- Sets how neovim will display certain whitespace characters in the editor. --- See `:help 'list'` --- and `:help 'listchars'` -vim.opt.list = true -vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } - --- Preview substitutions live, as you type! -vim.opt.inccommand = 'split' - --- Show which line your cursor is on -vim.opt.cursorline = true - --- Minimal number of screen lines to keep above and below the cursor. -vim.opt.scrolloff = 10 - --- [[ Basic Keymaps ]] --- See `:help vim.keymap.set()` - --- Clear highlights on search when pressing in normal mode --- See `:help hlsearch` -vim.keymap.set('n', '', 'nohlsearch') -vim.keymap.set('n', 'w', ':w', { desc = 'Save File' }) -vim.keymap.set('n', 'pv', ':Ex', { desc = 'Go back to Dir' }) - --- Diagnostic keymaps -vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) - --- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier --- for people to discover. Otherwise, you normally need to press , which --- is not what someone will guess without a bit more experience. --- --- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping --- or just use to exit terminal mode -vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' }) - --- TIP: Disable arrow keys in normal mode -vim.keymap.set('n', '', 'echo "Use h to move!!"') -vim.keymap.set('n', '', 'echo "Use l to move!!"') -vim.keymap.set('n', '', 'echo "Use k to move!!"') -vim.keymap.set('n', '', 'echo "Use j to move!!"') - --- Keybinds to make split navigation easier. --- Use CTRL+ to switch between windows --- --- See `:help wincmd` for a list of all window commands -vim.keymap.set('n', '', '', { desc = 'Move focus to the left window' }) -vim.keymap.set('n', '', '', { desc = 'Move focus to the right window' }) -vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) -vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) - --- [[ Basic Autocommands ]] --- See `:help lua-guide-autocommands` - --- Highlight when yanking (copying) text --- Try it with `yap` in normal mode --- See `:help vim.highlight.on_yank()` -vim.api.nvim_create_autocmd('TextYankPost', { - desc = 'Highlight when yanking (copying) text', - group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), - callback = function() - vim.highlight.on_yank() - end, -}) - --- [[ Install `lazy.nvim` plugin manager ]] --- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info -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 - error('Error cloning lazy.nvim:\n' .. out) - end -end ---@diagnostic disable-next-line: undefined-field -vim.opt.rtp:prepend(lazypath) - --- [[ Configure and install plugins ]] --- --- To check the current status of your plugins, run --- :Lazy --- --- You can press `?` in this menu for help. Use `:q` to close the window --- --- To update plugins you can run --- :Lazy update --- --- NOTE: Here is where you install your plugins. -require('lazy').setup({ - -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). - 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically - - -- NOTE: Plugins can also be added by using a table, - -- with the first argument being the link and the following - -- keys can be used to configure plugin behavior/loading/etc. - -- - -- Use `opts = {}` to force a plugin to be loaded. - -- - - -- Here is a more advanced example where we pass configuration - -- options to `gitsigns.nvim`. This is equivalent to the following Lua: - -- require('gitsigns').setup({ ... }) - -- - -- See `:help gitsigns` to understand what the configuration keys do - { -- Adds git related signs to the gutter, as well as utilities for managing changes - 'lewis6991/gitsigns.nvim', - opts = { - signs = { - add = { text = '+' }, - change = { text = '~' }, - delete = { text = '_' }, - topdelete = { text = '‾' }, - changedelete = { text = '~' }, - }, - }, - }, - -- NOTE: Plugins can also be configured to run Lua code when they are loaded. - -- - -- This is often very useful to both group configuration, as well as handle - -- lazy loading plugins that don't need to be loaded immediately at startup. - -- - -- For example, in the following configuration, we use: - -- event = 'VimEnter' - -- - -- which loads which-key before all the UI elements are loaded. Events can be - -- normal autocommands events (`:help autocmd-events`). - -- - -- Then, because we use the `config` key, the configuration only runs - -- after the plugin has been loaded: - -- config = function() ... end - - { -- Useful plugin to show you pending keybinds. - 'folke/which-key.nvim', - event = 'VimEnter', -- Sets the loading event to 'VimEnter' - opts = { - icons = { - -- set icon mappings to true if you have a Nerd Font - mappings = vim.g.have_nerd_font, - -- If you are using a Nerd Font: set icons.keys to an empty table which will use the - -- default whick-key.nvim defined Nerd Font icons, otherwise define a string table - keys = vim.g.have_nerd_font and {} or { - Up = ' ', - Down = ' ', - Left = ' ', - Right = ' ', - C = ' ', - M = ' ', - D = ' ', - S = ' ', - CR = ' ', - Esc = ' ', - ScrollWheelDown = ' ', - ScrollWheelUp = ' ', - NL = ' ', - BS = ' ', - Space = ' ', - Tab = ' ', - F1 = '', - F2 = '', - F3 = '', - F4 = '', - F5 = '', - F6 = '', - F7 = '', - F8 = '', - F9 = '', - F10 = '', - F11 = '', - F12 = '', - }, - }, - - -- Document existing key chains - spec = { - { 'c', group = '[C]ode', mode = { 'n', 'x' } }, - { 'd', group = '[D]ocument' }, - { 'r', group = '[R]ename' }, - { 's', group = '[S]earch' }, - { 'W', group = '[W]orkspace' }, - { 't', group = '[T]oggle' }, - { 'h', group = 'Git [H]unk', mode = { 'n', 'v' } }, - }, - }, - }, - - -- NOTE: Plugins can specify dependencies. - -- - -- The dependencies are proper plugin specifications as well - anything - -- you do for a plugin at the top level, you can do for a dependency. - -- - -- Use the `dependencies` key to specify the dependencies of a particular plugin - - { -- Fuzzy Finder (files, lsp, etc) - 'nvim-telescope/telescope.nvim', - event = 'VimEnter', - branch = '0.1.x', - dependencies = { - 'nvim-lua/plenary.nvim', - { -- If encountering errors, see telescope-fzf-native README for installation instructions - 'nvim-telescope/telescope-fzf-native.nvim', - - -- `build` is used to run some command when the plugin is installed/updated. - -- This is only run then, not every time Neovim starts up. - build = 'make', - - -- `cond` is a condition used to determine whether this plugin should be - -- installed and loaded. - cond = function() - return vim.fn.executable 'make' == 1 - end, - }, - { 'nvim-telescope/telescope-ui-select.nvim' }, - - -- Useful for getting pretty icons, but requires a Nerd Font. - { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, - }, - config = function() - -- Telescope is a fuzzy finder that comes with a lot of different things that - -- it can fuzzy find! It's more than just a "file finder", it can search - -- many different aspects of Neovim, your workspace, LSP, and more! - -- - -- The easiest way to use Telescope, is to start by doing something like: - -- :Telescope help_tags - -- - -- After running this command, a window will open up and you're able to - -- type in the prompt window. You'll see a list of `help_tags` options and - -- a corresponding preview of the help. - -- - -- Two important keymaps to use while in Telescope are: - -- - Insert mode: - -- - Normal mode: ? - -- - -- This opens a window that shows you all of the keymaps for the current - -- Telescope picker. This is really useful to discover what Telescope can - -- do as well as how to actually do it! - - -- [[ Configure Telescope ]] - -- See `:help telescope` and `:help telescope.setup()` - require('telescope').setup { - -- You can put your default mappings / updates / etc. in here - -- All the info you're looking for is in `:help telescope.setup()` - -- - -- defaults = { - -- mappings = { - -- i = { [''] = 'to_fuzzy_refine' }, - -- }, - -- }, - -- pickers = {} - extensions = { - ['ui-select'] = { - require('telescope.themes').get_dropdown(), - }, - }, - } - - -- Enable Telescope extensions if they are installed - pcall(require('telescope').load_extension, 'fzf') - pcall(require('telescope').load_extension, 'ui-select') - - -- See `:help telescope.builtin` - local builtin = require 'telescope.builtin' - vim.keymap.set('n', 'sh', builtin.help_tags, { desc = '[S]earch [H]elp' }) - vim.keymap.set('n', 'sk', builtin.keymaps, { desc = '[S]earch [K]eymaps' }) - vim.keymap.set('n', 'sf', builtin.find_files, { desc = '[S]earch [F]iles' }) - vim.keymap.set('n', 'ss', builtin.builtin, { desc = '[S]earch [S]elect Telescope' }) - vim.keymap.set('n', 'sw', builtin.grep_string, { desc = '[S]earch current [W]ord' }) - vim.keymap.set('n', 'sg', builtin.live_grep, { desc = '[S]earch by [G]rep' }) - vim.keymap.set('n', 'sd', builtin.diagnostics, { desc = '[S]earch [D]iagnostics' }) - vim.keymap.set('n', 'sr', builtin.resume, { desc = '[S]earch [R]esume' }) - vim.keymap.set('n', 's.', builtin.oldfiles, { desc = '[S]earch Recent Files ("." for repeat)' }) - vim.keymap.set('n', '', builtin.buffers, { desc = '[ ] Find existing buffers' }) - - -- Slightly advanced example of overriding default behavior and theme - vim.keymap.set('n', '/', function() - -- You can pass additional configuration to Telescope to change the theme, layout, etc. - builtin.current_buffer_fuzzy_find(require('telescope.themes').get_dropdown { - winblend = 10, - previewer = false, - }) - end, { desc = '[/] Fuzzily search in current buffer' }) - - -- It's also possible to pass additional configuration options. - -- See `:help telescope.builtin.live_grep()` for information about particular keys - vim.keymap.set('n', 's/', function() - builtin.live_grep { - grep_open_files = true, - prompt_title = 'Live Grep in Open Files', - } - end, { desc = '[S]earch [/] in Open Files' }) - - -- Shortcut for searching your Neovim configuration files - vim.keymap.set('n', 'sn', function() - builtin.find_files { cwd = vim.fn.stdpath 'config' } - end, { desc = '[S]earch [N]eovim files' }) - end, - }, - - { - 'ThePrimeagen/harpoon', - branch = 'harpoon2', - depenencies = { 'nvim-lua/plenary.nvim' }, - - config = function() - local harpoon = require 'harpoon' - - -- REQUIRED - harpoon:setup() - -- REQUIRED - - vim.keymap.set('n', 'A', function() - harpoon:list():add() - end, { desc = 'Add a file to harpoon' }) - vim.keymap.set('n', 'a', function() - harpoon.ui:toggle_quick_menu(harpoon:list()) - end, { desc = 'Open harpoon nav' }) - - vim.keymap.set('n', '1', function() - harpoon:list():select(1) - end, { desc = 'Go to file 1' }) - vim.keymap.set('n', '2', function() - harpoon:list():select(2) - end, { desc = 'Go to file 2' }) - vim.keymap.set('n', '3', function() - harpoon:list():select(3) - end, { desc = 'Go to file 3' }) - vim.keymap.set('n', '4', function() - harpoon:list():select(4) - end, { desc = 'Go to file 4' }) - vim.keymap.set('n', '5', function() - harpoon:list():select(5) - end, { desc = 'Go to file 5' }) - - -- Toggle previous & next buffers stored within Harpoon list - vim.keymap.set('n', '', function() - harpoon:list():prev() - end) - vim.keymap.set('n', '', function() - harpoon:list():next() - end) - - -- basic telescope configuration - local conf = require('telescope.config').values - local function toggle_telescope(harpoon_files) - local file_paths = {} - for _, item in ipairs(harpoon_files.items) do - table.insert(file_paths, item.value) - end - - require('telescope.pickers') - .new({}, { - prompt_title = 'Harpoon', - finder = require('telescope.finders').new_table { - results = file_paths, - }, - previewer = conf.file_previewer {}, - sorter = conf.generic_sorter {}, - }) - :find() - end - - vim.keymap.set('n', 'z', function() - toggle_telescope(harpoon:list()) - end, { desc = 'Open harpoon window in telescope' }) - end, - }, - - -- { - -- 'okuuva/auto-save.nvim', - -- cmd = 'ASToggle', -- optional for lazy loading on command - -- event = { 'InsertLeave', 'TextChanged' }, -- optional for lazy loading on trigger events - -- opts = { - -- -- your config goes here - -- -- or just leave it empty :) - -- }, - -- }, - - -- LSP Plugins - { - -- `lazyev` configures Lua LSP for your Neovim config, runtime and plugins - -- used for completion, annotations and signatures of Neovim apis - 'folke/lazydev.nvim', - ft = 'lua', - opts = { - library = { - -- Load luvit types when the `vim.uv` word is found - { path = 'luvit-meta/library', words = { 'vim%.uv' } }, - }, - }, - }, - { 'Bilal2453/luvit-meta', lazy = true }, - { - -- Main LSP Configuration - 'neovim/nvim-lspconfig', - dependencies = { - -- Automatically install LSPs and related tools to stdpath for Neovim - { 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants - 'williamboman/mason-lspconfig.nvim', - 'WhoIsSethDaniel/mason-tool-installer.nvim', - - -- Useful status updates for LSP. - -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` - { 'j-hui/fidget.nvim', opts = {} }, - - -- Allows extra capabilities provided by nvim-cmp - 'hrsh7th/cmp-nvim-lsp', - }, - config = function() - -- Brief aside: **What is LSP?** - -- - -- LSP is an initialism you've probably heard, but might not understand what it is. - -- - -- LSP stands for Language Server Protocol. It's a protocol that helps editors - -- and language tooling communicate in a standardized fashion. - -- - -- In general, you have a "server" which is some tool built to understand a particular - -- language (such as `gopls`, `lua_ls`, `rust_analyzer`, etc.). These Language Servers - -- (sometimes called LSP servers, but that's kind of like ATM Machine) are standalone - -- processes that communicate with some "client" - in this case, Neovim! - -- - -- LSP provides Neovim with features like: - -- - Go to definition - -- - Find references - -- - Autocompletion - -- - Symbol Search - -- - and more! - -- - -- Thus, Language Servers are external tools that must be installed separately from - -- Neovim. This is where `mason` and related plugins come into play. - -- - -- If you're wondering about lsp vs treesitter, you can check out the wonderfully - -- and elegantly composed help section, `:help lsp-vs-treesitter` - - -- This function gets run when an LSP attaches to a particular buffer. - -- That is to say, every time a new file is opened that is associated with - -- an lsp (for example, opening `main.rs` is associated with `rust_analyzer`) this - -- function will be executed to configure the current buffer - vim.api.nvim_create_autocmd('LspAttach', { - group = vim.api.nvim_create_augroup('kickstart-lsp-attach', { clear = true }), - callback = function(event) - -- NOTE: Remember that Lua is a real programming language, and as such it is possible - -- to define small helper and utility functions so you don't have to repeat yourself. - -- - -- In this case, we create a function that lets us more easily define mappings specific - -- for LSP related items. It sets the mode, buffer and description for us each time. - local map = function(keys, func, desc, mode) - mode = mode or 'n' - vim.keymap.set(mode, keys, func, { buffer = event.buf, desc = 'LSP: ' .. desc }) - end - - -- Jump to the definition of the word under your cursor. - -- This is where a variable was first declared, or where a function is defined, etc. - -- To jump back, press . - map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition') - - -- Find references for the word under your cursor. - map('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') - - -- Jump to the implementation of the word under your cursor. - -- Useful when your language has ways of declaring types without an actual implementation. - map('gI', require('telescope.builtin').lsp_implementations, '[G]oto [I]mplementation') - - -- Jump to the type of the word under your cursor. - -- Useful when you're not sure what type a variable is and you want to see - -- the definition of its *type*, not where it was *defined*. - map('D', require('telescope.builtin').lsp_type_definitions, 'Type [D]efinition') - - -- Fuzzy find all the symbols in your current document. - -- Symbols are things like variables, functions, types, etc. - map('ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') - - -- Fuzzy find all the symbols in your current workspace. - -- Similar to document symbols, except searches over your entire project. - map('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') - - -- Rename the variable under your cursor. - -- Most Language Servers support renaming across files, etc. - map('rn', vim.lsp.buf.rename, '[R]e[n]ame') - - -- Execute a code action, usually your cursor needs to be on top of an error - -- or a suggestion from your LSP for this to activate. - map('ca', vim.lsp.buf.code_action, '[C]ode [A]ction', { 'n', 'x' }) - - -- WARN: This is not Goto Definition, this is Goto Declaration. - -- For example, in C this would take you to the header. - map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') - - -- The following two autocommands are used to highlight references of the - -- word under your cursor when your cursor rests there for a little while. - -- See `:help CursorHold` for information about when this is executed - -- - -- When you move your cursor, the highlights will be cleared (the second autocommand). - local client = vim.lsp.get_client_by_id(event.data.client_id) - if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_documentHighlight) then - local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false }) - vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { - buffer = event.buf, - group = highlight_augroup, - callback = vim.lsp.buf.document_highlight, - }) - - vim.api.nvim_create_autocmd({ 'CursorMoved', 'CursorMovedI' }, { - buffer = event.buf, - group = highlight_augroup, - callback = vim.lsp.buf.clear_references, - }) - - vim.api.nvim_create_autocmd('LspDetach', { - group = vim.api.nvim_create_augroup('kickstart-lsp-detach', { clear = true }), - callback = function(event2) - vim.lsp.buf.clear_references() - vim.api.nvim_clear_autocmds { group = 'kickstart-lsp-highlight', buffer = event2.buf } - end, - }) - end - - -- The following code creates a keymap to toggle inlay hints in your - -- code, if the language server you are using supports them - -- - -- This may be unwanted, since they displace some of your code - if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_inlayHint) then - map('th', function() - vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf }) - end, '[T]oggle Inlay [H]ints') - end - end, - }) - - -- LSP servers and clients are able to communicate to each other what features they support. - -- By default, Neovim doesn't support everything that is in the LSP specification. - -- When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities. - -- So, we create new capabilities with nvim cmp, and then broadcast that to the servers. - local capabilities = vim.lsp.protocol.make_client_capabilities() - capabilities = vim.tbl_deep_extend('force', capabilities, require('cmp_nvim_lsp').default_capabilities()) - - -- Enable the following language servers - -- Feel free to add/remove any LSPs that you want here. They will automatically be installed. - -- - -- Add any additional override configuration in the following tables. Available keys are: - -- - cmd (table): Override the default command used to start the server - -- - filetypes (table): Override the default list of associated filetypes for the server - -- - capabilities (table): Override fields in capabilities. Can be used to disable certain LSP features. - -- - settings (table): Override the default settings passed when initializing the server. - -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ - local servers = { - -- clangd = {}, - -- gopls = {}, - -- pyright = {}, - -- rust_analyzer = {}, - -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs - -- - -- Some languages (like typescript) have entire language plugins that can be useful: - -- https://github.com/pmizio/typescript-tools.nvim - -- - -- But for many setups, the LSP (`ts_ls`) will work just fine - -- ts_ls = {}, - -- - - lua_ls = { - -- cmd = {...}, - -- filetypes = { ...}, - -- capabilities = {}, - settings = { - Lua = { - completion = { - callSnippet = 'Replace', - }, - -- You can toggle below to ignore Lua_LS's noisy `missing-fields` warnings - -- diagnostics = { disable = { 'missing-fields' } }, - }, - }, - }, - } - - -- Ensure the servers and tools above are installed - -- To check the current status of installed tools and/or manually install - -- other tools, you can run - -- :Mason - -- - -- You can press `g?` for help in this menu. - require('mason').setup() - - -- You can add other tools here that you want Mason to install - -- for you, so that they are available from within Neovim. - local ensure_installed = vim.tbl_keys(servers or {}) - vim.list_extend(ensure_installed, { - 'stylua', -- Used to format Lua code - }) - require('mason-tool-installer').setup { ensure_installed = ensure_installed } - - require('mason-lspconfig').setup { - handlers = { - function(server_name) - local server = servers[server_name] or {} - -- This handles overriding only values explicitly passed - -- by the server configuration above. Useful when disabling - -- certain features of an LSP (for example, turning off formatting for ts_ls) - server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) - require('lspconfig')[server_name].setup(server) - end, - }, - } - end, - }, - - { -- Autoformat - 'stevearc/conform.nvim', - event = { 'BufWritePre' }, - cmd = { 'ConformInfo' }, - keys = { - { - 'f', - function() - require('conform').format { async = true, lsp_format = 'fallback' } - end, - mode = '', - desc = '[F]ormat buffer', - }, - }, - opts = { - notify_on_error = false, - format_on_save = function(bufnr) - -- Disable "format_on_save lsp_fallback" for languages that don't - -- have a well standardized coding style. You can add additional - -- languages here or re-enable it for the disabled ones. - local disable_filetypes = { c = true, cpp = true } - local lsp_format_opt - if disable_filetypes[vim.bo[bufnr].filetype] then - lsp_format_opt = 'never' - else - lsp_format_opt = 'fallback' - end - return { - timeout_ms = 500, - lsp_format = lsp_format_opt, - } - end, - formatters_by_ft = { - lua = { 'stylua' }, - -- Conform can also run multiple formatters sequentially - -- python = { "isort", "black" }, - -- - -- You can use 'stop_after_first' to run the first available formatter from the list - -- javascript = { "prettierd", "prettier", stop_after_first = true }, - }, - }, - }, - - { -- Autocompletion - 'hrsh7th/nvim-cmp', - event = 'InsertEnter', - dependencies = { - -- Snippet Engine & its associated nvim-cmp source - { - 'L3MON4D3/LuaSnip', - build = (function() - -- Build Step is needed for regex support in snippets. - -- This step is not supported in many windows environments. - -- Remove the below condition to re-enable on windows. - if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then - return - end - return 'make install_jsregexp' - end)(), - - config = function() - require('luasnip.loaders.from_lua').load { paths = { '~/.config/nvim/snippets/' } } - end, - dependencies = { - - -- `friendly-snippets` contains a variety of premade snippets. - -- See the README about individual language/framework/plugin snippets: - -- https://github.com/rafamadriz/friendly-snippets - --{ - -- 'rafamadriz/friendly-snippets', - -- config = function() - -- require('luasnip.loaders.from_vscode').lazy_load() - -- end, - --}, - }, - }, - 'saadparwaiz1/cmp_luasnip', - - -- Adds other completion capabilities. - -- nvim-cmp does not ship with all sources by default. They are split - -- into multiple repos for maintenance purposes. - 'hrsh7th/cmp-nvim-lsp', - 'hrsh7th/cmp-path', - }, - config = function() - -- See `:help cmp` - local cmp = require 'cmp' - local luasnip = require 'luasnip' - luasnip.config.setup {} - - cmp.setup { - snippet = { - expand = function(args) - luasnip.lsp_expand(args.body) - end, - }, - completion = { completeopt = 'menu,menuone,noinsert' }, - - -- For an understanding of why these mappings were - -- chosen, you will need to read `:help ins-completion` - -- - -- No, but seriously. Please read `:help ins-completion`, it is really good! - mapping = cmp.mapping.preset.insert { - -- Select the [n]ext item - [''] = cmp.mapping.select_next_item(), - -- Select the [p]revious item - [''] = cmp.mapping.select_prev_item(), - - -- Scroll the documentation window [b]ack / [f]orward - [''] = cmp.mapping.scroll_docs(-4), - [''] = cmp.mapping.scroll_docs(4), - - -- Accept ([y]es) the completion. - -- This will auto-import if your LSP supports it. - -- This will expand snippets if the LSP sent a snippet. - [''] = cmp.mapping.confirm { select = true }, - - -- If you prefer more traditional completion keymaps, - -- you can uncomment the following lines - --[''] = cmp.mapping.confirm { select = true }, - --[''] = cmp.mapping.select_next_item(), - --[''] = cmp.mapping.select_prev_item(), - - -- Manually trigger a completion from nvim-cmp. - -- Generally you don't need this, because nvim-cmp will display - -- completions whenever it has completion options available. - [''] = cmp.mapping.complete {}, - - -- Think of as moving to the right of your snippet expansion. - -- So if you have a snippet that's like: - -- function $name($args) - -- $body - -- end - -- - -- will move you to the right of each of the expansion locations. - -- is similar, except moving you backwards. - [''] = cmp.mapping(function() - if luasnip.expand_or_locally_jumpable() then - luasnip.expand_or_jump() - end - end, { 'i', 's' }), - [''] = cmp.mapping(function() - if luasnip.locally_jumpable(-1) then - luasnip.jump(-1) - end - end, { 'i', 's' }), - - -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: - -- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps - }, - sources = { - { - name = 'lazydev', - -- set group index to 0 to skip loading LuaLS completions as lazydev recommends it - group_index = 0, - }, - { name = 'nvim_lsp' }, - { name = 'luasnip' }, - { name = 'path' }, - }, - } - end, - }, - - { -- You can easily change to a different colorscheme. - -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - { - 'AlexvZyl/nordic.nvim', - lazy = false, - priority = 1000, - config = function() - require('nordic').load() - end, - }, - 'folke/tokyonight.nvim', - priority = 1000, -- Make sure to load this before all the other start plugins. - init = function() - -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load - -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'nordic' - - -- You can configure highlights by doing something like: - vim.cmd.hi 'Comment gui=none' - end, - }, - - -- Highlight todo, notes, etc in comments - { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, - - { -- Collection of various small independent plugins/modules - 'echasnovski/mini.nvim', - config = function() - -- Better Around/Inside textobjects - -- - -- Examples: - -- - va) - [V]isually select [A]round [)]paren - -- - yinq - [Y]ank [I]nside [N]ext [Q]uote - -- - ci' - [C]hange [I]nside [']quote - require('mini.ai').setup { n_lines = 500 } - - -- Add/delete/replace surroundings (brackets, quotes, etc.) - -- - -- - saiw) - [S]urround [A]dd [I]nner [W]ord [)]Paren - -- - sd' - [S]urround [D]elete [']quotes - -- - sr)' - [S]urround [R]eplace [)] ['] - require('mini.surround').setup() - - -- Simple and easy statusline. - -- You could remove this setup call if you don't like it, - -- and try some other statusline plugin - local statusline = require 'mini.statusline' - -- set use_icons to true if you have a Nerd Font - statusline.setup { use_icons = vim.g.have_nerd_font } - - -- You can configure sections in the statusline by overriding their - -- default behavior. For example, here we set the section for - -- cursor location to LINE:COLUMN - ---@diagnostic disable-next-line: duplicate-set-field - statusline.section_location = function() - return '%2l:%-2v' - end - - -- ... and there is more! - -- Check out: https://github.com/echasnovski/mini.nvim - end, - }, - { -- Highlight, edit, and navigate code - 'nvim-treesitter/nvim-treesitter', - build = ':TSUpdate', - main = 'nvim-treesitter.configs', -- Sets main module to use for opts - -- [[ Configure Treesitter ]] See `:help nvim-treesitter` - opts = { - ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, - -- Autoinstall languages that are not installed - auto_install = true, - highlight = { - enable = true, - -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules. - -- If you are experiencing weird indenting issues, add the language to - -- the list of additional_vim_regex_highlighting and disabled languages for indent. - additional_vim_regex_highlighting = { 'ruby' }, - }, - indent = { enable = true, disable = { 'ruby' } }, - }, - -- There are additional nvim-treesitter modules that you can use to interact - -- with nvim-treesitter. You should go explore a few and see what interests you: - -- - -- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod` - -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context - -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects - }, - - -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the - -- init.lua. If you want these files, they are in the repository, so you can just download them and - -- place them in the correct locations. - - -- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for Kickstart - -- - -- Here are some example plugins that I've included in the Kickstart repository. - -- Uncomment any of the lines below to enable them (you will need to restart nvim). - -- - -- require 'kickstart.plugins.debug', - -- require 'kickstart.plugins.indent_line', - -- require 'kickstart.plugins.lint', - -- require 'kickstart.plugins.autopairs', - -- require 'kickstart.plugins.neo-tree', - -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps - - -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` - -- This is the easiest way to modularize your config. - -- - -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. - -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins` - -- { import = 'custom.plugins' }, -}, { - ui = { - -- If you are using a Nerd Font: set icons to an empty table which will use the - -- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table - icons = vim.g.have_nerd_font and {} or { - cmd = '⌘', - config = '🛠', - event = '📅', - ft = '📂', - init = '⚙', - keys = '🗝', - plugin = '🔌', - runtime = '💻', - require = '🌙', - source = '📄', - start = '🚀', - task = '📌', - lazy = '💤 ', - }, - }, -}) - --- The line beneath this is called `modeline`. See `:help modeline` --- vim: ts=2 sts=2 sw=2 et +-- Load configuration modules +require('config.options') +require('config.keymaps') +require('config.autocmds') +require('config.lazy') \ No newline at end of file diff --git a/lua/config/autocmds.lua b/lua/config/autocmds.lua new file mode 100644 index 00000000..04032308 --- /dev/null +++ b/lua/config/autocmds.lua @@ -0,0 +1,20 @@ +-- Autocommands + +-- Highlight on yank +vim.api.nvim_create_autocmd('TextYankPost', { + desc = 'Highlight when yanking (copying) text', + group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), + callback = function() + vim.highlight.on_yank() + end, +}) + +-- Set indentation for specific languages +vim.api.nvim_create_autocmd('FileType', { + pattern = { 'cs', 'go', 'rust' }, + callback = function() + vim.opt_local.expandtab = true + vim.opt_local.shiftwidth = 4 + vim.opt_local.tabstop = 4 + end, +}) \ No newline at end of file diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua new file mode 100644 index 00000000..d0abaa32 --- /dev/null +++ b/lua/config/keymaps.lua @@ -0,0 +1,41 @@ +-- Keymaps +vim.keymap.set('n', '', 'nohlsearch') +vim.keymap.set('n', 'w', ':w', { desc = 'Save File' }) +vim.keymap.set('n', 'pv', ':Ex', { desc = 'Go back to Dir' }) +vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) +vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' }) + +-- Disable arrow keys +vim.keymap.set('n', '', 'echo "Use h to move!!"') +vim.keymap.set('n', '', 'echo "Use l to move!!"') +vim.keymap.set('n', '', 'echo "Use k to move!!"') +vim.keymap.set('n', '', 'echo "Use j to move!!"') + +-- Window navigation +vim.keymap.set('n', '', '', { desc = 'Move focus to the left window' }) +vim.keymap.set('n', '', '', { desc = 'Move focus to the right window' }) +vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) +vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) + +-- Auto-close brackets +vim.keymap.set('i', '(', '()') +vim.keymap.set('i', '[', '[]') +vim.keymap.set('i', '{', '{}') +vim.keymap.set('i', '"', '""') +vim.keymap.set('i', "'", "''") + +-- Smart enter for brackets +vim.keymap.set('i', '', function() + local line = vim.api.nvim_get_current_line() + local col = vim.api.nvim_win_get_cursor(0)[2] + local before = line:sub(col, col) + local after = line:sub(col + 1, col + 1) + + if (before == '{' and after == '}') or + (before == '[' and after == ']') or + (before == '(' and after == ')') then + return '' + else + return '' + end +end, { expr = true }) \ No newline at end of file diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua new file mode 100644 index 00000000..8d5c9a6b --- /dev/null +++ b/lua/config/lazy.lua @@ -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 + error('Error cloning lazy.nvim:\n' .. out) + end +end +vim.opt.rtp:prepend(lazypath) + +-- Setup lazy.nvim +require('lazy').setup('plugins', { + ui = { + icons = vim.g.have_nerd_font and {} or { + cmd = '⌘', + config = '🛠', + event = '📅', + ft = '📂', + init = '⚙', + keys = '🗝', + plugin = '🔌', + runtime = '💻', + require = '🌙', + source = '📄', + start = '🚀', + task = '📌', + lazy = '💤 ', + }, + }, +}) \ No newline at end of file diff --git a/lua/config/options.lua b/lua/config/options.lua new file mode 100644 index 00000000..d7f02cd0 --- /dev/null +++ b/lua/config/options.lua @@ -0,0 +1,36 @@ +-- Options +vim.opt.number = true +vim.opt.relativenumber = true +vim.opt.mouse = '' +vim.opt.showmode = false + +vim.schedule(function() + vim.opt.clipboard = 'unnamedplus' +end) + +vim.opt.breakindent = true +vim.opt.undofile = true +vim.opt.ignorecase = true +vim.opt.smartcase = true +vim.opt.signcolumn = 'yes' +vim.opt.updatetime = 250 +vim.opt.timeoutlen = 300 + +-- Enable inline diagnostics +vim.diagnostic.config({ + virtual_text = { + prefix = '●', + source = 'always', + }, + signs = true, + underline = true, + update_in_insert = false, + severity_sort = true, +}) + +vim.opt.splitright = true +vim.opt.splitbelow = true +vim.opt.list = false +vim.opt.inccommand = 'split' +vim.opt.cursorline = true +vim.opt.scrolloff = 10 \ No newline at end of file diff --git a/lua/kickstart/plugins/indent_line.lua b/lua/kickstart/plugins/indent_line.lua deleted file mode 100644 index ed7f2693..00000000 --- a/lua/kickstart/plugins/indent_line.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - { -- Add indentation guides even on blank lines - 'lukas-reineke/indent-blankline.nvim', - -- Enable `lukas-reineke/indent-blankline.nvim` - -- See `:help ibl` - main = 'ibl', - opts = {}, - }, -} diff --git a/lua/plugins/completion.lua b/lua/plugins/completion.lua new file mode 100644 index 00000000..4daaf639 --- /dev/null +++ b/lua/plugins/completion.lua @@ -0,0 +1,74 @@ +-- Autocompletion +return { + 'hrsh7th/nvim-cmp', + event = 'InsertEnter', + dependencies = { + { + 'L3MON4D3/LuaSnip', + build = (function() + if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then + return + end + return 'make install_jsregexp' + end)(), + config = function() + require('luasnip.loaders.from_lua').load { paths = { '~/.config/nvim/snippets/' } } + end, + }, + 'saadparwaiz1/cmp_luasnip', + 'hrsh7th/cmp-nvim-lsp', + 'hrsh7th/cmp-path', + }, + config = function() + local cmp = require 'cmp' + local luasnip = require 'luasnip' + luasnip.config.setup {} + + cmp.setup { + snippet = { + expand = function(args) + luasnip.lsp_expand(args.body) + end, + }, + completion = { completeopt = 'menu,menuone,noinsert' }, + preselect = require('cmp').PreselectMode.None, + mapping = cmp.mapping.preset.insert { + [''] = cmp.mapping.select_next_item(), + [''] = cmp.mapping.select_prev_item(), + [''] = cmp.mapping.select_next_item(), + [''] = cmp.mapping.select_prev_item(), + [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(4), + [''] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.confirm({ select = true }) + elseif luasnip.expand_or_locally_jumpable() then + luasnip.expand_or_jump() + else + fallback() + end + end, { 'i', 's' }), + [''] = cmp.mapping.complete {}, + [''] = cmp.mapping(function() + if luasnip.expand_or_locally_jumpable() then + luasnip.expand_or_jump() + end + end, { 'i', 's' }), + [''] = cmp.mapping(function() + if luasnip.locally_jumpable(-1) then + luasnip.jump(-1) + end + end, { 'i', 's' }), + }, + sources = { + { + name = 'lazydev', + group_index = 0, + }, + { name = 'luasnip', priority = 1000 }, + { name = 'nvim_lsp', priority = 800 }, + { name = 'path', priority = 300 }, + }, + } + end, +} \ No newline at end of file diff --git a/lua/plugins/core.lua b/lua/plugins/core.lua new file mode 100644 index 00000000..5fe7998f --- /dev/null +++ b/lua/plugins/core.lua @@ -0,0 +1,19 @@ +-- Core plugins +return { + 'tpope/vim-sleuth', + + { + 'lewis6991/gitsigns.nvim', + opts = { + signs = { + add = { text = '+' }, + change = { text = '~' }, + delete = { text = '_' }, + topdelete = { text = '‾' }, + changedelete = { text = '~' }, + }, + }, + }, + + { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, +} \ No newline at end of file diff --git a/lua/plugins/formatting.lua b/lua/plugins/formatting.lua new file mode 100644 index 00000000..6edd0d30 --- /dev/null +++ b/lua/plugins/formatting.lua @@ -0,0 +1,44 @@ +-- Code formatting +return { + 'stevearc/conform.nvim', + event = { 'BufWritePre' }, + cmd = { 'ConformInfo' }, + keys = { + { + 'f', + function() + require('conform').format { async = true, lsp_format = 'fallback' } + end, + mode = '', + desc = '[F]ormat buffer', + }, + }, + opts = { + notify_on_error = false, + formatters = { + csharpier = { + command = 'csharpier', + args = { 'format', '$FILENAME' }, + stdin = false, + tmpfile_format = '.cs', + }, + }, + format_on_save = function(bufnr) + local disable_filetypes = { c = true, cpp = true } + local lsp_format_opt + if disable_filetypes[vim.bo[bufnr].filetype] then + lsp_format_opt = 'never' + else + lsp_format_opt = 'fallback' + end + return { + timeout_ms = 500, + lsp_format = lsp_format_opt, + } + end, + formatters_by_ft = { + lua = { 'stylua' }, + -- cs = { 'csharpier' }, + }, + }, +} \ No newline at end of file diff --git a/lua/plugins/harpoon.lua b/lua/plugins/harpoon.lua new file mode 100644 index 00000000..f2131ca9 --- /dev/null +++ b/lua/plugins/harpoon.lua @@ -0,0 +1,63 @@ +-- Harpoon for quick file navigation +return { + 'ThePrimeagen/harpoon', + branch = 'harpoon2', + dependencies = { 'nvim-lua/plenary.nvim' }, + config = function() + local harpoon = require 'harpoon' + harpoon:setup() + + vim.keymap.set('n', 'A', function() + harpoon:list():add() + end, { desc = 'Add a file to harpoon' }) + vim.keymap.set('n', 'a', function() + harpoon.ui:toggle_quick_menu(harpoon:list()) + end, { desc = 'Open harpoon nav' }) + + vim.keymap.set('n', '1', function() + harpoon:list():select(1) + end, { desc = 'Go to file 1' }) + vim.keymap.set('n', '2', function() + harpoon:list():select(2) + end, { desc = 'Go to file 2' }) + vim.keymap.set('n', '3', function() + harpoon:list():select(3) + end, { desc = 'Go to file 3' }) + vim.keymap.set('n', '4', function() + harpoon:list():select(4) + end, { desc = 'Go to file 4' }) + vim.keymap.set('n', '5', function() + harpoon:list():select(5) + end, { desc = 'Go to file 5' }) + + vim.keymap.set('n', '', function() + harpoon:list():prev() + end) + vim.keymap.set('n', '', function() + harpoon:list():next() + end) + + local conf = require('telescope.config').values + local function toggle_telescope(harpoon_files) + local file_paths = {} + for _, item in ipairs(harpoon_files.items) do + table.insert(file_paths, item.value) + end + + require('telescope.pickers') + .new({}, { + prompt_title = 'Harpoon', + finder = require('telescope.finders').new_table { + results = file_paths, + }, + previewer = conf.file_previewer {}, + sorter = conf.generic_sorter {}, + }) + :find() + end + + vim.keymap.set('n', 'z', function() + toggle_telescope(harpoon:list()) + end, { desc = 'Open harpoon window in telescope' }) + end, +} \ No newline at end of file diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua new file mode 100644 index 00000000..5a012b73 --- /dev/null +++ b/lua/plugins/lsp.lua @@ -0,0 +1,112 @@ +-- LSP configuration +return { + { + 'folke/lazydev.nvim', + ft = 'lua', + opts = { + library = { + { path = 'luvit-meta/library', words = { 'vim%.uv' } }, + }, + }, + }, + { 'Bilal2453/luvit-meta', lazy = true }, + + { + 'neovim/nvim-lspconfig', + dependencies = { + { 'williamboman/mason.nvim', config = true }, + 'williamboman/mason-lspconfig.nvim', + 'WhoIsSethDaniel/mason-tool-installer.nvim', + { 'j-hui/fidget.nvim', opts = {} }, + 'hrsh7th/cmp-nvim-lsp', + }, + config = function() + vim.api.nvim_create_autocmd('LspAttach', { + group = vim.api.nvim_create_augroup('kickstart-lsp-attach', { clear = true }), + callback = function(event) + local map = function(keys, func, desc, mode) + mode = mode or 'n' + vim.keymap.set(mode, keys, func, { buffer = event.buf, desc = 'LSP: ' .. desc }) + end + + map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition') + map('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') + map('gI', require('telescope.builtin').lsp_implementations, '[G]oto [I]mplementation') + map('D', require('telescope.builtin').lsp_type_definitions, 'Type [D]efinition') + map('ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') + map('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') + map('rn', vim.lsp.buf.rename, '[R]e[n]ame') + map('ca', vim.lsp.buf.code_action, '[C]ode [A]ction', { 'n', 'x' }) + map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') + + local client = vim.lsp.get_client_by_id(event.data.client_id) + if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_documentHighlight) then + local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false }) + vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { + buffer = event.buf, + group = highlight_augroup, + callback = vim.lsp.buf.document_highlight, + }) + + vim.api.nvim_create_autocmd({ 'CursorMoved', 'CursorMovedI' }, { + buffer = event.buf, + group = highlight_augroup, + callback = vim.lsp.buf.clear_references, + }) + + vim.api.nvim_create_autocmd('LspDetach', { + group = vim.api.nvim_create_augroup('kickstart-lsp-detach', { clear = true }), + callback = function(event2) + vim.lsp.buf.clear_references() + vim.api.nvim_clear_autocmds { group = 'kickstart-lsp-highlight', buffer = event2.buf } + end, + }) + end + + if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_inlayHint) then + map('th', function() + vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf }) + end, '[T]oggle Inlay [H]ints') + end + end, + }) + + local capabilities = vim.lsp.protocol.make_client_capabilities() + capabilities = vim.tbl_deep_extend('force', capabilities, require('cmp_nvim_lsp').default_capabilities()) + + local servers = { + omnisharp = { + cmd = { 'omnisharp-mono' }, + }, + lua_ls = { + settings = { + Lua = { + completion = { + callSnippet = 'Replace', + }, + }, + }, + }, + } + + require('mason').setup() + + local ensure_installed = vim.tbl_keys(servers or {}) + vim.list_extend(ensure_installed, { + 'stylua', + 'csharpier', + }) + require('mason-tool-installer').setup { ensure_installed = ensure_installed } + + require('mason-lspconfig').setup { + handlers = { + function(server_name) + local server = servers[server_name] or {} + server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) + require('lspconfig')[server_name].setup(server) + end, + }, + } + end, + }, +} \ No newline at end of file diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua new file mode 100644 index 00000000..b2678307 --- /dev/null +++ b/lua/plugins/telescope.lua @@ -0,0 +1,60 @@ +-- Telescope fuzzy finder +return { + 'nvim-telescope/telescope.nvim', + event = 'VimEnter', + branch = '0.1.x', + dependencies = { + 'nvim-lua/plenary.nvim', + { + 'nvim-telescope/telescope-fzf-native.nvim', + build = 'make', + cond = function() + return vim.fn.executable 'make' == 1 + end, + }, + { 'nvim-telescope/telescope-ui-select.nvim' }, + { 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font }, + }, + config = function() + require('telescope').setup { + extensions = { + ['ui-select'] = { + require('telescope.themes').get_dropdown(), + }, + }, + } + + pcall(require('telescope').load_extension, 'fzf') + pcall(require('telescope').load_extension, 'ui-select') + + local builtin = require 'telescope.builtin' + vim.keymap.set('n', 'sh', builtin.help_tags, { desc = '[S]earch [H]elp' }) + vim.keymap.set('n', 'sk', builtin.keymaps, { desc = '[S]earch [K]eymaps' }) + vim.keymap.set('n', 'sf', builtin.find_files, { desc = '[S]earch [F]iles' }) + vim.keymap.set('n', 'ss', builtin.builtin, { desc = '[S]earch [S]elect Telescope' }) + vim.keymap.set('n', 'sw', builtin.grep_string, { desc = '[S]earch current [W]ord' }) + vim.keymap.set('n', 'sg', builtin.live_grep, { desc = '[S]earch by [G]rep' }) + vim.keymap.set('n', 'sd', builtin.diagnostics, { desc = '[S]earch [D]iagnostics' }) + vim.keymap.set('n', 'sr', builtin.resume, { desc = '[S]earch [R]esume' }) + vim.keymap.set('n', 's.', builtin.oldfiles, { desc = '[S]earch Recent Files ("." for repeat)' }) + vim.keymap.set('n', '', builtin.buffers, { desc = '[ ] Find existing buffers' }) + + vim.keymap.set('n', '/', function() + builtin.current_buffer_fuzzy_find(require('telescope.themes').get_dropdown { + winblend = 10, + previewer = false, + }) + end, { desc = '[/] Fuzzily search in current buffer' }) + + vim.keymap.set('n', 's/', function() + builtin.live_grep { + grep_open_files = true, + prompt_title = 'Live Grep in Open Files', + } + end, { desc = '[S]earch [/] in Open Files' }) + + vim.keymap.set('n', 'sn', function() + builtin.find_files { cwd = vim.fn.stdpath 'config' } + end, { desc = '[S]earch [N]eovim files' }) + end, +} \ No newline at end of file diff --git a/lua/plugins/theme.lua b/lua/plugins/theme.lua new file mode 100644 index 00000000..a22eee83 --- /dev/null +++ b/lua/plugins/theme.lua @@ -0,0 +1,233 @@ +-- Custom theme +return { + { + name = 'vague-theme', + dir = vim.fn.stdpath('config'), + config = function() + -- Vague theme + local function setup_vague_theme() + vim.cmd 'highlight clear' + if vim.fn.exists 'syntax_on' == 1 then + vim.cmd 'syntax reset' + end + + vim.o.background = 'dark' + vim.g.colors_name = 'vague' + + local c = { + black = '#000000', + dark_gray = '#1b1c1d', + gray = '#2d2d30', + light_gray = '#5c5c6e', + white = '#cdcdcd', + foreground = '#be8c8c', + cursor = '#c2c2c2', + line_bg = '#282830', + active_fg = '#deb896', + focus_fg = '#ddb795', + property = '#b6c4dc', + number = '#C2966B', + parameter = '#b8a2ba', + class = '#b06767', + namespace = '#748fa7', + keyword = '#7894AB', + control_kw = '#748fa7', + interface = '#d57d7d', + func = '#be8c8c', + operator = '#CDCDCD', + string = '#deb896', + comment = '#8c8c8c', + error = '#d2788c', + warning = '#e6be8c', + info = '#61a0c4', + } + + local function hi(group, fg, bg, attr) + local cmd = 'highlight ' .. group + if fg and fg ~= '' then + cmd = cmd .. ' guifg=' .. fg + end + if bg and bg ~= '' then + cmd = cmd .. ' guibg=' .. bg + end + if attr and attr ~= '' then + cmd = cmd .. ' gui=' .. attr + end + vim.cmd(cmd) + end + + -- Basic highlights + hi('Normal', c.white, c.black, '') + hi('Cursor', c.black, c.cursor, '') + hi('CursorLine', '', c.line_bg, '') + hi('CursorColumn', '', c.line_bg, '') + hi('LineNr', c.light_gray, '', '') + hi('CursorLineNr', c.focus_fg, '', 'bold') + hi('Visual', '', '#3d3d3d28', '') + hi('VisualNOS', '', '#3d3d3d28', '') + hi('Search', c.black, c.number, '') + hi('IncSearch', c.black, c.active_fg, '') + hi('MatchParen', '', '#0064001a', '') + hi('VertSplit', c.gray, '', '') + hi('WinSeparator', c.gray, '', '') + hi('StatusLine', c.active_fg, c.black, '') + hi('StatusLineNC', c.foreground, c.black, '') + hi('TabLine', c.foreground, c.black, '') + hi('TabLineFill', '', c.black, '') + hi('TabLineSel', c.active_fg, c.black, 'bold') + hi('Pmenu', c.warning, c.black, '') + hi('PmenuSel', c.active_fg, '#232426', '') + hi('PmenuSbar', '', c.gray, '') + hi('PmenuThumb', '', c.light_gray, '') + hi('FloatBorder', c.gray, '', '') + hi('NormalFloat', c.white, c.black, '') + hi('Folded', c.comment, '#8484841c', '') + hi('FoldColumn', c.light_gray, '', '') + hi('DiffAdd', '', '#587c0c4c', '') + hi('DiffChange', '', '#0c7d9d52', '') + hi('DiffDelete', '', '#94151b54', '') + hi('DiffText', '', '#bcbcbc14', '') + hi('DiagnosticError', c.error, '', '') + hi('DiagnosticWarn', c.warning, '', '') + hi('DiagnosticInfo', c.info, '', '') + hi('DiagnosticHint', c.comment, '', '') + hi('ErrorMsg', c.error, '', '') + hi('WarningMsg', c.warning, '', '') + hi('ModeMsg', c.active_fg, '', '') + hi('MoreMsg', c.active_fg, '', '') + hi('Question', c.active_fg, '', '') + + -- Syntax + hi('Comment', c.comment, '', 'italic') + hi('Constant', c.number, '', '') + hi('String', c.string, '', '') + hi('Character', c.string, '', '') + hi('Number', c.number, '', '') + hi('Boolean', c.number, '', '') + hi('Float', c.number, '', '') + hi('Identifier', c.property, '', '') + hi('Function', c.func, '', '') + hi('Statement', c.keyword, '', '') + hi('Conditional', c.control_kw, '', '') + hi('Repeat', c.control_kw, '', '') + hi('Label', c.keyword, '', '') + hi('Operator', c.operator, '', '') + hi('Keyword', c.keyword, '', '') + hi('Exception', c.control_kw, '', '') + hi('PreProc', c.keyword, '', '') + hi('Include', c.keyword, '', '') + hi('Define', c.keyword, '', '') + hi('Macro', c.keyword, '', '') + hi('PreCondit', c.keyword, '', '') + hi('Type', c.class, '', '') + hi('StorageClass', c.keyword, '', '') + hi('Structure', c.class, '', '') + hi('Typedef', c.class, '', '') + hi('Special', c.operator, '', '') + hi('SpecialChar', c.operator, '', '') + hi('Tag', c.class, '', '') + hi('Delimiter', c.operator, '', '') + hi('SpecialComment', c.comment, '', 'bold') + hi('Debug', c.error, '', '') + + -- TreeSitter + hi('@variable', c.white, '', '') + hi('@variable.builtin', c.class, '', '') + hi('@variable.parameter', c.parameter, '', '') + hi('@variable.member', c.property, '', '') + hi('@constant', c.number, '', '') + hi('@constant.builtin', c.number, '', '') + hi('@constant.macro', c.keyword, '', '') + hi('@string', c.string, '', '') + hi('@string.escape', c.operator, '', '') + hi('@string.special', c.operator, '', '') + hi('@character', c.string, '', '') + hi('@character.special', c.operator, '', '') + hi('@number', c.number, '', '') + hi('@boolean', c.number, '', '') + hi('@float', c.number, '', '') + hi('@function', c.func, '', '') + hi('@function.builtin', c.func, '', '') + hi('@function.call', c.func, '', '') + hi('@function.macro', c.func, '', '') + hi('@method', c.func, '', '') + hi('@method.call', c.func, '', '') + hi('@constructor', c.class, '', '') + hi('@parameter', c.parameter, '', '') + hi('@keyword', c.keyword, '', '') + hi('@keyword.function', c.keyword, '', '') + hi('@keyword.operator', c.keyword, '', '') + hi('@keyword.return', c.control_kw, '', '') + hi('@keyword.conditional', c.control_kw, '', '') + hi('@keyword.repeat', c.control_kw, '', '') + hi('@keyword.exception', c.control_kw, '', '') + hi('@operator', c.operator, '', '') + hi('@punctuation.delimiter', c.operator, '', '') + hi('@punctuation.bracket', c.operator, '', '') + hi('@punctuation.special', c.operator, '', '') + hi('@type', c.class, '', '') + hi('@type.builtin', c.class, '', '') + hi('@type.definition', c.class, '', '') + hi('@type.qualifier', c.keyword, '', '') + hi('@property', c.property, '', '') + hi('@field', c.property, '', '') + hi('@namespace', c.namespace, '', '') + hi('@module', c.namespace, '', '') + hi('@label', c.keyword, '', '') + hi('@comment', c.comment, '', 'italic') + hi('@tag', c.class, '', '') + hi('@tag.attribute', c.property, '', '') + hi('@tag.delimiter', c.operator, '', '') + + -- LSP + hi('@lsp.type.class', c.class, '', '') + hi('@lsp.type.interface', c.interface, '', '') + hi('@lsp.type.namespace', c.namespace, '', '') + hi('@lsp.type.parameter', c.parameter, '', '') + hi('@lsp.type.property', c.property, '', '') + hi('@lsp.type.variable', c.white, '', '') + hi('@lsp.type.function', c.func, '', '') + hi('@lsp.type.method', c.func, '', '') + hi('@lsp.type.macro', c.func, '', '') + hi('@lsp.mod.defaultLibrary', c.func, '', '') + hi('LspSignatureActiveParameter', c.parameter, '', 'bold') + hi('LspCodeLens', c.comment, '', '') + hi('LspInlayHint', c.comment, '', 'italic') + + -- Telescope + hi('TelescopeNormal', c.white, c.black, '') + hi('TelescopeBorder', c.gray, '', '') + hi('TelescopeSelection', c.active_fg, '#232426', '') + hi('TelescopeSelectionCaret', c.active_fg, '', '') + hi('TelescopeMatching', c.number, '', '') + + -- Which-key + hi('WhichKey', c.property, '', '') + hi('WhichKeyGroup', c.class, '', '') + hi('WhichKeyDesc', c.white, '', '') + hi('WhichKeyFloat', '', c.black, '') + hi('WhichKeyBorder', c.gray, '', '') + + -- Terminal colors + vim.g.terminal_color_0 = c.black + vim.g.terminal_color_1 = '#cd3131' + vim.g.terminal_color_2 = '#0dbc79' + vim.g.terminal_color_3 = '#e5e510' + vim.g.terminal_color_4 = '#2472c8' + vim.g.terminal_color_5 = '#bc3fbc' + vim.g.terminal_color_6 = '#11a8cd' + vim.g.terminal_color_7 = '#e5e5e5' + vim.g.terminal_color_8 = '#666666' + vim.g.terminal_color_9 = '#f14c4c' + vim.g.terminal_color_10 = '#23d18b' + vim.g.terminal_color_11 = '#f5f543' + vim.g.terminal_color_12 = '#3b8eea' + vim.g.terminal_color_13 = '#d670d6' + vim.g.terminal_color_14 = '#29b8db' + vim.g.terminal_color_15 = '#e5e5e5' + end + + setup_vague_theme() + end, + }, +} \ No newline at end of file diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 00000000..a47ccfd0 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,15 @@ +-- Treesitter for syntax highlighting +return { + 'nvim-treesitter/nvim-treesitter', + build = ':TSUpdate', + main = 'nvim-treesitter.configs', + opts = { + ensure_installed = { 'bash', 'c', 'c_sharp', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, + auto_install = true, + highlight = { + enable = true, + additional_vim_regex_highlighting = { 'ruby' }, + }, + indent = { enable = true, disable = { 'ruby' } }, + }, +} \ No newline at end of file diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua new file mode 100644 index 00000000..d281b890 --- /dev/null +++ b/lua/plugins/ui.lua @@ -0,0 +1,163 @@ +-- UI plugins +return { + { + 'folke/which-key.nvim', + event = 'VimEnter', + opts = { + icons = { + mappings = vim.g.have_nerd_font, + keys = vim.g.have_nerd_font and {} or { + Up = ' ', + Down = ' ', + Left = ' ', + Right = ' ', + C = ' ', + M = ' ', + D = ' ', + S = ' ', + CR = ' ', + Esc = ' ', + ScrollWheelDown = ' ', + ScrollWheelUp = ' ', + NL = ' ', + BS = ' ', + Space = ' ', + Tab = ' ', + F1 = '', + F2 = '', + F3 = '', + F4 = '', + F5 = '', + F6 = '', + F7 = '', + F8 = '', + F9 = '', + F10 = '', + F11 = '', + F12 = '', + }, + }, + spec = { + -- Groups + { 'c', group = '[C]ode', mode = { 'n', 'x' } }, + { 'd', group = '[D]ocument' }, + { 'r', group = '[R]ename' }, + { 's', group = '[S]earch' }, + { 'W', group = '[W]orkspace' }, + { 't', group = '[T]oggle' }, + { 'h', group = 'Git [H]unk', mode = { 'n', 'v' } }, + + -- General keybinds + { 'w', desc = 'Save File' }, + { 'pv', desc = 'Go back to Dir' }, + { 'q', desc = 'Open diagnostic quickfix list' }, + { 'f', desc = 'Format buffer', mode = { 'n', 'v' } }, + + -- LSP keybinds + { 'D', desc = 'Type Definition' }, + { 'ds', desc = 'Document Symbols' }, + { 'ws', desc = 'Workspace Symbols' }, + { 'rn', desc = 'Rename' }, + { 'ca', desc = 'Code Action', mode = { 'n', 'v' } }, + { 'th', desc = 'Toggle Inlay Hints' }, + + -- Harpoon keybinds + { 'A', desc = 'Add file to harpoon' }, + { 'a', desc = 'Open harpoon nav' }, + { '1', desc = 'Go to file 1' }, + { '2', desc = 'Go to file 2' }, + { '3', desc = 'Go to file 3' }, + { '4', desc = 'Go to file 4' }, + { '5', desc = 'Go to file 5' }, + { 'z', desc = 'Open harpoon in telescope' }, + + -- Telescope search keybinds + { 'sh', desc = 'Search Help' }, + { 'sk', desc = 'Search Keymaps' }, + { 'sf', desc = 'Search Files' }, + { 'ss', desc = 'Search Select Telescope' }, + { 'sw', desc = 'Search current Word' }, + { 'sg', desc = 'Search by Grep' }, + { 'sd', desc = 'Search Diagnostics' }, + { 'sr', desc = 'Search Resume' }, + { 's.', desc = 'Search Recent Files' }, + { '', desc = 'Find existing buffers' }, + { '/', desc = 'Fuzzily search in current buffer' }, + { 's/', desc = 'Search in Open Files' }, + { 'sn', desc = 'Search Neovim files' }, + + -- Debug keybinds + { 'b', desc = 'Debug: Toggle Breakpoint' }, + { 'B', desc = 'Debug: Set Breakpoint' }, + + -- Git hunk actions + { 'hs', desc = 'Stage hunk', mode = { 'n', 'v' } }, + { 'hr', desc = 'Reset hunk', mode = { 'n', 'v' } }, + { 'hS', desc = 'Stage buffer' }, + { 'hu', desc = 'Undo stage hunk' }, + { 'hR', desc = 'Reset buffer' }, + { 'hp', desc = 'Preview hunk' }, + { 'hb', desc = 'Blame line' }, + { 'hd', desc = 'Diff against index' }, + { 'hD', desc = 'Diff against last commit' }, + + -- Git toggles + { 'tb', desc = 'Toggle git show blame line' }, + { 'tD', desc = 'Toggle git show deleted' }, + + -- Function keys + { '', desc = 'Debug: Step Into' }, + { '', desc = 'Debug: Step Over' }, + { '', desc = 'Debug: Step Out' }, + { '', desc = 'Debug: Start/Continue' }, + { '', desc = 'Debug: See last session result' }, + + -- Other important keybinds + { '\\', desc = 'NeoTree reveal' }, + { 'gd', desc = 'Go to Definition' }, + { 'gr', desc = 'Go to References' }, + { 'gI', desc = 'Go to Implementation' }, + { 'gD', desc = 'Go to Declaration' }, + { ']c', desc = 'Next git change' }, + { '[c', desc = 'Previous git change' }, + }, + }, + }, + + { + 'echasnovski/mini.nvim', + config = function() + require('mini.ai').setup { n_lines = 500 } + require('mini.surround').setup() + + local statusline = require 'mini.statusline' + statusline.setup { use_icons = vim.g.have_nerd_font } + + statusline.section_location = function() + return '%2l:%-2v' + end + end, + }, + + { + 'lukas-reineke/indent-blankline.nvim', + main = 'ibl', + event = 'BufReadPost', + config = function() + vim.api.nvim_set_hl(0, 'IblIndent', { fg = '#0a0a0a' }) + vim.api.nvim_set_hl(0, 'IblScope', { fg = '#0e0e0e' }) + require('ibl').setup({ + indent = { + char = '│', + highlight = 'IblIndent', + }, + scope = { + enabled = true, + show_start = false, + show_end = false, + highlight = 'IblScope', + }, + }) + end, + }, +} \ No newline at end of file diff --git a/snippets/cs.lua b/snippets/cs.lua index 07a6e894..3b0280ad 100644 --- a/snippets/cs.lua +++ b/snippets/cs.lua @@ -1,178 +1,157 @@ -local ls = require 'luasnip' +local ls = require("luasnip") local s = ls.snippet local t = ls.text_node local i = ls.insert_node -local f = ls.function_node -local c = ls.choice_node -local d = ls.dynamic_node -local r = ls.restore_node -local fmt = require('luasnip.extras.fmt').fmt +local fmt = require("luasnip.extras.fmt").fmt + +-- Configure snippet options +local snippet_opts = { + condition = function() + return not ls.in_snippet() + end, + show_condition = function() + return not ls.in_snippet() + end +} return { + -- Complete main setup + s("main", fmt([[ + using System; - s( - 'cww', - fmt('Console.WriteLine({});{}', { - i(1, ''), - i(0), - }) - ), + namespace {}; - s( - 'cw', - fmt('Console.Write({});{}', { - i(1, ''), - i(0), - }) - ), + class Program + {{ + static void Main(string[] args) + {{ + {} + }} + }} + ]], { i(1, "MyApp"), i(2, 'Console.WriteLine("Hello, World!");') }), snippet_opts), - s( - 'do', - fmt( - [[ -do -{{ -{}}} while ({}); -{}]], - { - i(2), - i(1), - i(0), - } - ) - ), + -- Namespace + s("namespace", fmt([[ + namespace {}; - s( - 'while', - fmt( - [[ -while ({}) -{{ -{}}} -{}]], - { - i(1), - i(2), - i(0), - } - ) - ), + {} + ]], { i(1, "MyNamespace"), i(2) }), snippet_opts), - s( - 'fo', - fmt( - [[ -for (int {} = 0; {} < {}; {}++) -{{ -{}}} -{}]], - { - i(2, 'i'), - f(function(args) - return args[1][1] - end, { 2 }), - i(1, '1'), - f(function(args) - return args[1][1] - end, { 2 }), - i(3), - i(0), - } - ) - ), + -- Class + s("class", fmt([[ + public class {} + {{ + {} + }} + ]], { i(1, "MyClass"), i(2) }), snippet_opts), - s( - 'forr', - fmt( - [[ -for (int {} = {} - 1; {} >= 0; {}--) -{{ -{}}} -{}]], - { - i(2, 'i'), - i(1, 'length'), - f(function(args) - return args[1][1] - end, { 2 }), - f(function(args) - return args[1][1] - end, { 2 }), - i(3), - i(0), - } - ) - ), + -- Method + s("method", fmt([[ + public {} {}({}) + {{ + {} + }} + ]], { i(1, "void"), i(2, "MyMethod"), i(3), i(4) }), snippet_opts), - s('cc', t 'Console.Clear();'), + -- Property + s("prop", fmt([[ + public {} {} {{ get; set; }} + ]], { i(1, "string"), i(2, "MyProperty") }), snippet_opts), - s('crk', t 'Console.ReadKey(true);'), + -- Auto property with init + s("propi", fmt([[ + public {} {} {{ get; init; }} + ]], { i(1, "string"), i(2, "MyProperty") }), snippet_opts), - s('crl', t 'Console.ReadLine();'), + -- Constructor + s("ctor", fmt([[ + public {}({}) + {{ + {} + }} + ]], { i(1, "ClassName"), i(2), i(3) }), snippet_opts), - s( - 'foreach', - fmt( - [[ -foreach ({}) -{{ -{}}}{}]], - { - i(1), - i(2), - i(0), - } - ) - ), + -- Interface + s("interface", fmt([[ + public interface {} + {{ + {} + }} + ]], { i(1, "IMyInterface"), i(2) }), snippet_opts), - s( - 'cla', - fmt( - [[ -class {} -{{ -{}}} - ]], - { - i(1, 'ClassName'), - i(0), - } - ) - ), + -- For loop + s("for", fmt([[ + for (int {} = 0; {} < {}; {}++) + {{ + {} + }} + ]], { i(1, "i"), i(1), i(2, "10"), i(1), i(3) }), snippet_opts), - s( - 'inter', - fmt( - [[ -interface {} -{{ -{}}} - ]], - { - i(1, 'IInterfaceName'), - i(0), - } - ) - ), + -- Foreach loop + s("foreach", fmt([[ + foreach ({} {} in {}) + {{ + {} + }} + ]], { i(1, "var"), i(2, "item"), i(3, "collection"), i(4) }), snippet_opts), - s( - 'enu', - fmt( - [[ -enum {} -{{ -{}}} - ]], - { - i(1, 'EnumName'), - i(0), - } - ) - ), + -- If statement + s("if", fmt([[ + if ({}) + {{ + {} + }} + ]], { i(1, "condition"), i(2) }), snippet_opts), - s('comment', { - t { '/*', '' }, - i(1), - t { '', '*/' }, - }), -} + -- Console.WriteLine + s("cw", fmt([[ + Console.WriteLine({}); + ]], { i(1, '"Hello"') }), snippet_opts), + + -- Console.Write + s("cwn", fmt([[ + Console.Write({}); + ]], { i(1, '"Hello"') }), snippet_opts), + + -- Try-catch + s("try", fmt([[ + try + {{ + {} + }} + catch ({}) + {{ + {} + }} + ]], { i(1), i(2, "Exception ex"), i(3, "throw;") }), snippet_opts), + + -- Variable declaration + s("var", fmt([[ + var {} = {}; + ]], { i(1, "name"), i(2, "value") }), snippet_opts), + + -- String variable + s("string", fmt([[ + string {} = {}; + ]], { i(1, "name"), i(2, '""') }), snippet_opts), + + -- Record + s("record", fmt([[ + public record {}({}); + ]], { i(1, "MyRecord"), i(2, "string Name") }), snippet_opts), + + -- List declaration + s("list", fmt([[ + List<{}> {} = [{}]; + ]], { i(1, "string"), i(2, "list"), i(3) }), snippet_opts), + + -- Dictionary declaration + s("dict", fmt([[ + Dictionary<{}, {}> {} = []; + ]], { i(1, "string"), i(2, "string"), i(3, "dict") }), snippet_opts), + + -- Array declaration + s("array", fmt([[ + {}[] {} = [{}]; + ]], { i(1, "string"), i(2, "array"), i(3) }), snippet_opts), +} \ No newline at end of file diff --git a/snippets/go.lua b/snippets/go.lua new file mode 100644 index 00000000..458c04b6 --- /dev/null +++ b/snippets/go.lua @@ -0,0 +1,126 @@ +local ls = require("luasnip") +local s = ls.snippet +local t = ls.text_node +local i = ls.insert_node +local fmt = require("luasnip.extras.fmt").fmt + +-- Configure snippet options +local snippet_opts = { + condition = function() + return not ls.in_snippet() + end, + show_condition = function() + return not ls.in_snippet() + end +} + +return { + -- Complete main setup + s("main", fmt([[ + package main + + import "fmt" + + func main() {{ + {} + }} + ]], { i(1, 'fmt.Println("Hello, World!")') }), snippet_opts), + + -- Package declaration + s("pkg", fmt([[ + package {} + ]], { i(1, "main") }), snippet_opts), + + -- Function + s("func", fmt([[ + func {}({}) {{ + {} + }} + ]], { i(1, "name"), i(2), i(3) }), snippet_opts), + + -- Function with return + s("funcr", fmt([[ + func {}() {} {{ + {} + }} + ]], { i(1, "name"), i(2, "string"), i(3, 'return ""') }), snippet_opts), + + -- If error + s("iferr", fmt([[ + if err != nil {{ + {} + }} + ]], { i(1, "return err") }), snippet_opts), + + -- For loop + s("for", fmt([[ + for {} {{ + {} + }} + ]], { i(1, "i := 0; i < 10; i++"), i(2) }), snippet_opts), + + -- Printf + s("pf", fmt([[ + fmt.Printf("{}\n", {}) + ]], { i(1, "%v"), i(2, "value") }), snippet_opts), + + -- Println + s("pl", fmt([[ + fmt.Println({}) + ]], { i(1, '"Hello"') }), snippet_opts), + + -- Variable declaration + s("var", fmt([[ + var {} {} + ]], { i(1, "name"), i(2, "string") }), snippet_opts), + + -- Short variable declaration + s(":=", fmt([[ + {} := {} + ]], { i(1, "name"), i(2, "value") }), snippet_opts), + + -- Struct + s("struct", fmt([[ + type {} struct {{ + {} + }} + ]], { i(1, "Name"), i(2, "Field string") }), snippet_opts), + + -- Interface + s("interface", fmt([[ + type {} interface {{ + {} + }} + ]], { i(1, "Name"), i(2, "Method()") }), snippet_opts), + + -- Test function + s("test", fmt([[ + func Test{}(t *testing.T) {{ + {} + }} + ]], { i(1, "Name"), i(2) }), snippet_opts), + + -- Method + s("method", fmt([[ + func ({} *{}) {}() {{ + {} + }} + ]], { i(1, "r"), i(2, "Receiver"), i(3, "Method"), i(4) }), snippet_opts), + + -- Goroutine + s("go", fmt([[ + go func() {{ + {} + }}() + ]], { i(1) }), snippet_opts), + + -- Channel + s("chan", fmt([[ + {} := make(chan {}) + ]], { i(1, "ch"), i(2, "string") }), snippet_opts), + + -- Defer + s("defer", fmt([[ + defer {} + ]], { i(1, "cleanup()") }), snippet_opts), +} \ No newline at end of file diff --git a/snippets/rust.lua b/snippets/rust.lua new file mode 100644 index 00000000..a916b1c9 --- /dev/null +++ b/snippets/rust.lua @@ -0,0 +1,180 @@ +local ls = require("luasnip") +local s = ls.snippet +local t = ls.text_node +local i = ls.insert_node +local fmt = require("luasnip.extras.fmt").fmt + +-- Configure snippet options +local snippet_opts = { + condition = function() + return not ls.in_snippet() + end, + show_condition = function() + return not ls.in_snippet() + end +} + +return { + -- Complete main setup + s("main", fmt([[ + fn main() {{ + {} + }} + ]], { i(1, 'println!("Hello, World!");') }), snippet_opts), + + -- Function + s("fn", fmt([[ + fn {}({}) {{ + {} + }} + ]], { i(1, "name"), i(2), i(3) }), snippet_opts), + + -- Function with return + s("fnr", fmt([[ + fn {}({}) -> {} {{ + {} + }} + ]], { i(1, "name"), i(2), i(3, "()"), i(4) }), snippet_opts), + + -- Struct + s("struct", fmt([[ + struct {} {{ + {}: {}, + }} + ]], { i(1, "Name"), i(2, "field"), i(3, "String") }), snippet_opts), + + -- Enum + s("enum", fmt([[ + enum {} {{ + {}, + }} + ]], { i(1, "Name"), i(2, "Variant") }), snippet_opts), + + -- Implementation + s("impl", fmt([[ + impl {} {{ + {} + }} + ]], { i(1, "Name"), i(2) }), snippet_opts), + + -- Trait + s("trait", fmt([[ + trait {} {{ + {} + }} + ]], { i(1, "Name"), i(2) }), snippet_opts), + + -- Match statement + s("match", fmt([[ + match {} {{ + {} => {}, + _ => {}, + }} + ]], { i(1, "value"), i(2, "pattern"), i(3), i(4) }), snippet_opts), + + -- If let + s("iflet", fmt([[ + if let {} = {} {{ + {} + }} + ]], { i(1, "Some(value)"), i(2, "option"), i(3) }), snippet_opts), + + -- For loop + s("for", fmt([[ + for {} in {} {{ + {} + }} + ]], { i(1, "item"), i(2, "iterator"), i(3) }), snippet_opts), + + -- While loop + s("while", fmt([[ + while {} {{ + {} + }} + ]], { i(1, "condition"), i(2) }), snippet_opts), + + -- Loop + s("loop", fmt([[ + loop {{ + {} + }} + ]], { i(1) }), snippet_opts), + + -- If statement + s("if", fmt([[ + if {} {{ + {} + }} + ]], { i(1, "condition"), i(2) }), snippet_opts), + + -- Variable declaration + s("let", fmt([[ + let {} = {}; + ]], { i(1, "name"), i(2, "value") }), snippet_opts), + + -- Mutable variable + s("letm", fmt([[ + let mut {} = {}; + ]], { i(1, "name"), i(2, "value") }), snippet_opts), + + -- Print + s("print", fmt([[ + println!("{}", {}); + ]], { i(1, "{}"), i(2, "value") }), snippet_opts), + + -- Debug print + s("dbg", fmt([[ + dbg!({}); + ]], { i(1, "value") }), snippet_opts), + + -- Vector + s("vec", fmt([[ + let {} = vec![{}]; + ]], { i(1, "name"), i(2) }), snippet_opts), + + -- HashMap + s("hashmap", fmt([[ + let mut {} = HashMap::new(); + ]], { i(1, "map") }), snippet_opts), + + -- Result match + s("result", fmt([[ + match {} {{ + Ok({}) => {}, + Err({}) => {}, + }} + ]], { i(1, "result"), i(2, "value"), i(3), i(4, "err"), i(5) }), snippet_opts), + + -- Option match + s("option", fmt([[ + match {} {{ + Some({}) => {}, + None => {}, + }} + ]], { i(1, "option"), i(2, "value"), i(3), i(4) }), snippet_opts), + + -- Test function + s("test", fmt([[ + #[test] + fn test_{}() {{ + {} + }} + ]], { i(1, "name"), i(2) }), snippet_opts), + + -- Derive + s("derive", fmt([[ + #[derive({})] + ]], { i(1, "Debug, Clone") }), snippet_opts), + + -- Module + s("mod", fmt([[ + mod {} {{ + {} + }} + ]], { i(1, "name"), i(2) }), snippet_opts), + + -- Use statement + s("use", fmt([[ + use {}; + ]], { i(1, "std::collections::HashMap") }), snippet_opts), +} \ No newline at end of file