From 7b392239a9b1fffb3cd37948e1221b710190bbcd Mon Sep 17 00:00:00 2001 From: Pietro Scuttari Date: Fri, 13 Sep 2024 23:33:25 +0200 Subject: [PATCH 1/3] First customizations --- init.lua | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index ea86b792abe..8b79ce133d6 100644 --- a/init.lua +++ b/init.lua @@ -662,6 +662,8 @@ require('lazy').setup({ end, }, } + local lspconfig = require 'lspconfig' + lspconfig.gopls.setup {} end, }, @@ -786,7 +788,7 @@ require('lazy').setup({ -- 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 {}, + [''] = cmp.mapping.complete {}, -- Think of as moving to the right of your snippet expansion. -- So if you have a snippet that's like: @@ -930,6 +932,25 @@ require('lazy').setup({ -- 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' }, + + { + 'NeogitOrg/neogit', + dependencies = { + 'nvim-lua/plenary.nvim', -- required + 'sindrets/diffview.nvim', -- optional - Diff integration + + -- Only one of these is needed. + 'nvim-telescope/telescope.nvim', -- optional + 'ibhagwan/fzf-lua', -- optional + 'echasnovski/mini.pick', -- optional + }, + config = function() + local neogit = require 'neogit' + neogit.setup {} + + vim.keymap.set('n', 'g', neogit.open, { desc = '[ ] open NeoGit' }) + end, + }, }, { ui = { -- If you are using a Nerd Font: set icons to an empty table which will use the From b8d5f55163f064997607b70e30477b1c42c59083 Mon Sep 17 00:00:00 2001 From: scutta Date: Wed, 26 Nov 2025 20:23:31 +0100 Subject: [PATCH 2/3] Second change --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 8b79ce133d6..83988e2251d 100644 --- a/init.lua +++ b/init.lua @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false 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 +vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a' @@ -662,8 +662,8 @@ require('lazy').setup({ end, }, } - local lspconfig = require 'lspconfig' - lspconfig.gopls.setup {} + -- local lspconfig = require 'lspconfig' + -- lspconfig.gopls.setup {} end, }, From 535b8bf42210872e6254b1c1368360f3f45a1a9a Mon Sep 17 00:00:00 2001 From: scutta Date: Wed, 26 Nov 2025 21:58:07 +0100 Subject: [PATCH 3/3] Remove .github --- .github/ISSUE_TEMPLATE/bug_report.md | 35 ---------------------------- .github/pull_request_template.md | 8 ------- .github/workflows/stylua.yml | 21 ----------------- 3 files changed, 64 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/pull_request_template.md delete mode 100644 .github/workflows/stylua.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 86598b8dc98..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - - - -## Before Reporting an Issue -- I have read the kickstart.nvim README.md. -- I have read the appropriate plugin's documentation. -- I have searched that this issue has not been reported before. - -- [ ] **By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.** - -## Describe the bug - - -## To Reproduce - -1. ... - -## Desktop - -- OS: -- Terminal: - -## Neovim Version - - -``` -``` diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index f401c9ffd9c..00000000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,8 +0,0 @@ -*************************************************************************** -**NOTE** -Please verify that the `base repository` above has the intended destination! -Github by default opens Pull Requests against the parent of a forked repository. -If this is your personal fork and you didn't intend to open a PR for contribution -to the original project then adjust the `base repository` accordingly. -************************************************************************** - diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml deleted file mode 100644 index 75db6c3355b..00000000000 --- a/.github/workflows/stylua.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Check Lua Formatting -name: Check Lua Formatting -on: pull_request_target - -jobs: - stylua-check: - if: github.repository == 'nvim-lua/kickstart.nvim' - name: Stylua Check - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v2 - with: - ref: ${{ github.event.pull_request.head.sha }} - - name: Stylua Check - uses: JohnnyMorganz/stylua-action@v3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - version: latest - args: --check . -