-- https://neovim.io/doc/user/lua-guide.html vim.opt.completeopt = { "menuone", "noinsert", "noselect" } vim.opt.swapfile = false vim.opt.title = true vim.opt.virtualedit = "block" vim.opt.whichwrap = "<,>,[,]" -- Case character vim.opt.ignorecase = true vim.opt.smartcase = true -- Line number vim.opt.number = true vim.opt.relativenumber = true vim.opt.scrolloff = 4 vim.opt.signcolumn = "number" -- Tab vim.opt.tabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true -- Wrap vim.opt.breakindent = true -- Clipboard support vim.opt.clipboard = "unnamedplus" -- Truecolor if vim.env.COLORTERM == "truecolor" then vim.opt.termguicolors = true end -- Mouse support vim.opt.mouse = "a" -- Workaround -- https://github.com/neovim/neovim/issues/16416 -- https://github.com/rafamadriz/dotfiles/commit/1298a91558a7def5866ebee3a0b13899a6d1a78e vim.keymap.set("i", "", "") -- Typo vim.cmd("command W w") vim.cmd("command Q q") vim.cmd("command WQ wq") vim.cmd("command Wq wq") -- Leader vim.keymap.set("n", ";", "", { remap = true }) vim.keymap.set("n", "'", "", { remap = true }) -- Keymap vim.keymap.set("n", "n", "nzz") vim.keymap.set("n", "N", "Nzz") vim.keymap.set("n", "{", "{zz") vim.keymap.set("n", "}", "}zz") -- https://github.com/folke/lazy.nvim local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ -- Colorschemes -- https://github.com/catppuccin/nvim { "catppuccin/nvim", name = "catppuccin", lazy = false, priority = 1000, config = function() require("catppuccin").setup({ flavour = "mocha", integrations = { mini = true, }, }) vim.cmd("colorscheme catppuccin") end, }, -- https://github.com/junegunn/fzf.vim "junegunn/fzf", -- https://github.com/ibhagwan/fzf-lua { "ibhagwan/fzf-lua", dependencies = { "junegunn/fzf", "neovim/nvim-lspconfig", }, config = function() require("fzf-lua").setup({ "max-perf" }) vim.keymap.set("n", "f", ":FzfLua files") vim.keymap.set("n", "rg", ":FzfLua live_grep_native") vim.keymap.set("n", "s", ":FzfLua lsp_document_symbols") end, }, -- https://github.com/nvim-lualine/lualine.nvim { "nvim-lualine/lualine.nvim", config = function() require("lualine").setup({ options = { icons_enabled = false, theme = "auto", component_separators = { left = "", right = "" }, section_separators = { left = "", right = "" }, }, extensions = { "fzf", "nvim-tree" }, }) -- Disable showmode when use lualine vim.opt.showmode = false end, }, -- https://github.com/nvim-tree/nvim-tree.lua { "nvim-tree/nvim-tree.lua", init = function() vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 end, config = function() require("nvim-tree").setup({ renderer = { group_empty = true, root_folder_label = false, indent_width = 1, icons = { show = { file = false, folder = false, folder_arrow = false, git = false, modified = false, }, }, }, filters = { custom = { "^.git$", "^.DS_Store", ".out", ".class", }, }, }) vim.keymap.set("n", "", ":NvimTreeToggle") vim.keymap.set("n", "n", ":NvimTreeFindFile") end, }, -- https://github.com/hrsh7th/nvim-cmp { "hrsh7th/nvim-cmp", event = "InsertEnter", dependencies = { "neovim/nvim-lspconfig", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", "hrsh7th/cmp-vsnip", "hrsh7th/vim-vsnip", "zbirenbaum/copilot-cmp", }, config = function() local cmp = require("cmp") cmp.setup({ performance = { max_view_entries = 8, }, snippet = { expand = function(args) vim.fn["vsnip#anonymous"](args.body) end, }, mapping = cmp.mapping.preset.insert({ [""] = cmp.mapping.complete(), [""] = function(fallback) if cmp.visible() then cmp.confirm() else fallback() end end, [""] = function(fallback) if cmp.visible() then cmp.select_next_item() else fallback() end end, [""] = function(fallback) if cmp.visible() then cmp.select_prev_item() else fallback() end end, }), sources = cmp.config.sources({ { name = "nvim_lsp" }, { name = "copilot" }, }, { { name = "buffer" }, }), }) end, }, -- https://github.com/zbirenbaum/copilot-cmp { "zbirenbaum/copilot-cmp", dependencies = { "zbirenbaum/copilot.lua", }, config = function() require("copilot_cmp").setup() end, }, -- https://github.com/lukas-reineke/indent-blankline.nvim { "lukas-reineke/indent-blankline.nvim", config = function() require("indent_blankline").setup() end, }, -- https://github.com/lewis6991/gitsigns.nvim { "lewis6991/gitsigns.nvim", config = function() require("gitsigns").setup({ signs = { untracked = { text = "" }, }, current_line_blame = true, current_line_blame_opts = { delay = 1200, ignore_whitespace = true, }, on_attach = function(bufnr) local gs = package.loaded.gitsigns local function map(mode, l, r, opts) opts = opts or {} opts.buffer = bufnr vim.keymap.set(mode, l, r, opts) end -- Navigation map("n", "]c", function() if vim.wo.diff then return "]c" end vim.schedule(function() gs.next_hunk() end) return "" end, { expr = true }) map("n", "[c", function() if vim.wo.diff then return "[c" end vim.schedule(function() gs.prev_hunk() end) return "" end, { expr = true }) end, }) end, }, -- https://github.com/tpope/vim-projectionist { "tpope/vim-projectionist", init = function() vim.g.projectionist_heuristics = { ["*.go"] = { ["*.go"] = { alternate = "{}_test.go", type = "source", }, ["*_test.go"] = { alternate = "{}.go", type = "test", }, }, } end, }, -- https://github.com/echasnovski/mini.nvim { "echasnovski/mini.nvim", config = function() -- https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-bracketed.md require("mini.bracketed").setup({ comment = { suffix = "", options = {} }, }) -- https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-comment.md require("mini.comment").setup() -- https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-cursorword.md require("mini.cursorword").setup() -- https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-surround.md require("mini.surround").setup() -- https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-trailspace.md require("mini.trailspace").setup() vim.keymap.set("n", "tr", ":lua MiniTrailspace.trim()") end, }, -- Programming languages -- https://github.com/sbdchd/neoformat { "sbdchd/neoformat", init = function() vim.g.neoformat_basic_format_trim = 1 vim.g.neoformat_enabled_go = { "gofumpt" } vim.g.shfmt_opt = "-ci" end, }, -- https://github.com/nvim-treesitter/nvim-treesitter { "nvim-treesitter/nvim-treesitter", build = { ":TSUpdate", }, init = function() vim.opt.foldmethod = "expr" vim.opt.foldexpr = "nvim_treesitter#foldexpr()" vim.opt.foldenable = false end, config = function() require("nvim-treesitter.configs").setup({ ensure_installed = { "go", "json", "lua", "toml", "yaml", "proto", }, }) end, }, -- https://github.com/nvim-treesitter/nvim-treesitter-context { "nvim-treesitter/nvim-treesitter-context", config = function() require("treesitter-context").setup({ enable = true, max_lines = 2, }) end, }, -- https://github.com/neovim/nvim-lspconfig { "neovim/nvim-lspconfig", config = function() local lspconfig = require("lspconfig") -- Go -- https://github.com/golang/tools/blob/master/gopls/doc/vim.md -- https://github.com/golang/tools/blob/master/gopls/doc/settings.md -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#gopls lspconfig.gopls.setup({ settings = { gopls = { gofumpt = true, semanticTokens = true, }, }, }) -- Proto -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bufls lspconfig.bufls.setup({}) -- Lua -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#lua_ls lspconfig.lua_ls.setup({ settings = { Lua = { runtime = { version = "LuaJIT", }, diagnostics = { globals = { "vim" }, }, format = { -- Prefer Neoformat with stylua enable = false, }, workspace = { library = vim.api.nvim_get_runtime_file("", true), checkThirdParty = false, }, }, }, }) -- General vim.keymap.set("n", "[d", vim.diagnostic.goto_prev) vim.keymap.set("n", "]d", vim.diagnostic.goto_next) vim.api.nvim_create_autocmd("LspAttach", { group = vim.api.nvim_create_augroup("UserLspConfig", {}), callback = function(ev) vim.bo[ev.buf].omnifunc = "v:lua.vim.lsp.omnifunc" local opts = { buffer = ev.buf } vim.keymap.set("n", "gd", vim.lsp.buf.definition, opts) vim.keymap.set("n", "k", vim.lsp.buf.hover, opts) vim.keymap.set("n", "", vim.lsp.buf.rename, opts) vim.keymap.set({ "n", "v" }, "ca", vim.lsp.buf.code_action, opts) vim.keymap.set("n", "gr", vim.lsp.buf.references, opts) vim.keymap.set("n", "f", function() vim.lsp.buf.format({ async = true }) end, opts) end, }) vim.keymap.set("n", "lr", ":LspRestart") end, }, -- https://github.com/zbirenbaum/copilot.lua { "zbirenbaum/copilot.lua", event = "InsertEnter", config = function() require("copilot").setup({ panel = { enabled = false, }, suggestion = { enabled = false, }, filetypes = { ["."] = false, c = true, cpp = true, go = true, java = true, json = true, lua = true, make = true, markdown = true, proto = true, python = true, toml = true, yaml = true, }, }) end, }, })