mirror of
https://github.com/dam9000/kickstart-modular.nvim.git
synced 2026-05-14 08:23:48 +00:00
Compare commits
No commits in common. "cfdc17be3ae1607d4427332de0b29d556f9dda13" and "9b4fbc5021551188965d7cba54874fd1496d6ed2" have entirely different histories.
cfdc17be3a
...
9b4fbc5021
4
.gitignore
vendored
4
.gitignore
vendored
@ -6,9 +6,9 @@ nvim
|
|||||||
spell/
|
spell/
|
||||||
|
|
||||||
# In your personal fork, you likely want to comment this, since it's recommended to track
|
# In your personal fork, you likely want to comment this, since it's recommended to track
|
||||||
# nvim-pack-lock.json in version control - see :help vim.pack-lockfile
|
# lazy-lock.json in version control - see https://lazy.folke.io/usage/lockfile
|
||||||
# For the official `nvim-lua/kickstart.nvim` git repository, we leave it ignored to avoid unneeded
|
# For the official `nvim-lua/kickstart.nvim` git repository, we leave it ignored to avoid unneeded
|
||||||
# merge conflicts.
|
# merge conflicts.
|
||||||
nvim-pack-lock.json
|
lazy-lock.json
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|||||||
44
README.md
44
README.md
@ -69,9 +69,9 @@ fork to your machine using one of the commands below, depending on your OS.
|
|||||||
> Your fork's URL will be something like this:
|
> Your fork's URL will be something like this:
|
||||||
> `https://github.com/<your_github_username>/kickstart.nvim.git`
|
> `https://github.com/<your_github_username>/kickstart.nvim.git`
|
||||||
|
|
||||||
You likely want to remove `nvim-pack-lock.json` from your fork's `.gitignore`
|
You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file
|
||||||
file too - it's ignored in the kickstart repo to make maintenance easier, but
|
too - it's ignored in the kickstart repo to make maintenance easier, but it's
|
||||||
it's recommended to track it in version control (see `:help vim.pack-lockfile`).
|
[recommended to track it in version control](https://lazy.folke.io/usage/lockfile).
|
||||||
|
|
||||||
#### Clone kickstart.nvim
|
#### Clone kickstart.nvim
|
||||||
|
|
||||||
@ -111,10 +111,8 @@ Start Neovim
|
|||||||
nvim
|
nvim
|
||||||
```
|
```
|
||||||
|
|
||||||
That's it! `vim.pack` will install all the plugins from your config. Use
|
That's it! Lazy will install all the plugins you have. Use `:Lazy` to view
|
||||||
`:lua vim.pack.update(nil, { offline = true })` to inspect plugin state and
|
the current plugin status. Hit `q` to close the window.
|
||||||
`:lua vim.pack.update()` to fetch updates (`:write` applies updates, `:quit`
|
|
||||||
cancels them).
|
|
||||||
|
|
||||||
#### Read The Friendly Documentation
|
#### Read The Friendly Documentation
|
||||||
|
|
||||||
@ -148,8 +146,7 @@ examples of adding popularly requested plugins.
|
|||||||
`~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim
|
`~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim
|
||||||
distribution that you would like to try out.
|
distribution that you would like to try out.
|
||||||
* What if I want to "uninstall" this configuration:
|
* What if I want to "uninstall" this configuration:
|
||||||
* Remove your config directory and local data directory (for example,
|
* See [lazy.nvim uninstall](https://lazy.folke.io/usage#-uninstalling) information
|
||||||
`~/.config/nvim` and `~/.local/share/nvim`).
|
|
||||||
* Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files?
|
* Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files?
|
||||||
* The main purpose of kickstart is to serve as a teaching tool and a reference
|
* The main purpose of kickstart is to serve as a teaching tool and a reference
|
||||||
configuration that someone can easily use to `git clone` as a basis for their own.
|
configuration that someone can easily use to `git clone` as a basis for their own.
|
||||||
@ -170,36 +167,17 @@ After installing all the dependencies continue with the [Install Kickstart](#ins
|
|||||||
#### Windows Installation
|
#### Windows Installation
|
||||||
|
|
||||||
<details><summary>Windows with Microsoft C++ Build Tools and CMake</summary>
|
<details><summary>Windows with Microsoft C++ Build Tools and CMake</summary>
|
||||||
Kickstart's default config is make-only for `telescope-fzf-native.nvim`.
|
Installation may require installing build tools and updating the run command for `telescope-fzf-native`
|
||||||
If `make` is unavailable, the plugin is skipped.
|
|
||||||
|
|
||||||
Recommended: install `make` (see the chocolatey section below).
|
See `telescope-fzf-native` documentation for [more details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation)
|
||||||
|
|
||||||
If you want a CMake-only setup, customize `init.lua` in two places:
|
This requires:
|
||||||
|
|
||||||
1. Include `telescope-fzf-native.nvim` when `cmake` is available:
|
- Install CMake and the Microsoft C++ Build Tools on Windows
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
if vim.fn.executable 'make' == 1 or vim.fn.executable 'cmake' == 1 then
|
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
|
||||||
table.insert(plugins, gh 'nvim-telescope/telescope-fzf-native.nvim')
|
|
||||||
end
|
|
||||||
```
|
```
|
||||||
|
|
||||||
2. In the `PackChanged` hook, use CMake when `make` is unavailable:
|
|
||||||
|
|
||||||
```lua
|
|
||||||
if name == 'telescope-fzf-native.nvim' then
|
|
||||||
if vim.fn.executable 'make' == 1 then
|
|
||||||
run_build(name, { 'make' }, ev.data.path)
|
|
||||||
elseif vim.fn.executable 'cmake' == 1 then
|
|
||||||
run_build(name, { 'cmake', '-S.', '-Bbuild', '-DCMAKE_BUILD_TYPE=Release' }, ev.data.path)
|
|
||||||
run_build(name, { 'cmake', '--build', 'build', '--config', 'Release', '--target', 'install' }, ev.data.path)
|
|
||||||
end
|
|
||||||
return
|
|
||||||
end
|
|
||||||
```
|
|
||||||
|
|
||||||
See `telescope-fzf-native` documentation for [build details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation).
|
|
||||||
</details>
|
</details>
|
||||||
<details><summary>Windows with gcc/make using chocolatey</summary>
|
<details><summary>Windows with gcc/make using chocolatey</summary>
|
||||||
Alternatively, one can install gcc and make which don't require changing the config,
|
Alternatively, one can install gcc and make which don't require changing the config,
|
||||||
|
|||||||
@ -3,11 +3,6 @@
|
|||||||
--
|
--
|
||||||
-- See the kickstart.nvim README for more information
|
-- See the kickstart.nvim README for more information
|
||||||
|
|
||||||
-- Iterate over all Lua files in the plugins directory and load them
|
---@module 'lazy'
|
||||||
local plugins_dir = vim.fs.joinpath(vim.fn.stdpath 'config', 'lua', 'custom', 'plugins')
|
---@type LazySpec
|
||||||
for file_name, type in vim.fs.dir(plugins_dir) do
|
return {}
|
||||||
if type == 'file' and file_name:match '%.lua$' and file_name ~= 'init.lua' then
|
|
||||||
local module = file_name:gsub('%.lua$', '')
|
|
||||||
require('custom.plugins.' .. module)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|||||||
@ -12,7 +12,7 @@ local check_version = function()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if vim.version.ge(vim.version(), '0.12') then
|
if vim.version.ge(vim.version(), '0.11') then
|
||||||
vim.health.ok(string.format("Neovim version is: '%s'", verstr))
|
vim.health.ok(string.format("Neovim version is: '%s'", verstr))
|
||||||
else
|
else
|
||||||
vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr))
|
vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr))
|
||||||
|
|||||||
@ -1,5 +1,10 @@
|
|||||||
-- autopairs
|
-- autopairs
|
||||||
-- https://github.com/windwp/nvim-autopairs
|
-- https://github.com/windwp/nvim-autopairs
|
||||||
|
|
||||||
vim.pack.add { 'https://github.com/windwp/nvim-autopairs' }
|
---@module 'lazy'
|
||||||
require('nvim-autopairs').setup {}
|
---@type LazySpec
|
||||||
|
return {
|
||||||
|
'windwp/nvim-autopairs',
|
||||||
|
event = 'InsertEnter',
|
||||||
|
opts = {},
|
||||||
|
}
|
||||||
|
|||||||
@ -6,29 +6,42 @@
|
|||||||
-- be extended to other languages as well. That's why it's called
|
-- be extended to other languages as well. That's why it's called
|
||||||
-- kickstart.nvim and not kitchen-sink.nvim ;)
|
-- kickstart.nvim and not kitchen-sink.nvim ;)
|
||||||
|
|
||||||
vim.pack.add {
|
---@module 'lazy'
|
||||||
'https://github.com/mfussenegger/nvim-dap',
|
---@type LazySpec
|
||||||
'https://github.com/rcarriga/nvim-dap-ui',
|
return {
|
||||||
'https://github.com/nvim-neotest/nvim-nio',
|
-- NOTE: Yes, you can install new plugins here!
|
||||||
'https://github.com/mason-org/mason.nvim',
|
'mfussenegger/nvim-dap',
|
||||||
'https://github.com/jay-babu/mason-nvim-dap.nvim',
|
-- NOTE: And you can specify dependencies as well
|
||||||
'https://github.com/leoluz/nvim-dap-go',
|
dependencies = {
|
||||||
}
|
-- Creates a beautiful debugger UI
|
||||||
|
'rcarriga/nvim-dap-ui',
|
||||||
|
|
||||||
-- Basic debugging keymaps, feel free to change to your liking!
|
-- Required dependency for nvim-dap-ui
|
||||||
vim.keymap.set('n', '<F5>', function() require('dap').continue() end, { desc = 'Debug: Start/Continue' })
|
'nvim-neotest/nvim-nio',
|
||||||
vim.keymap.set('n', '<F1>', function() require('dap').step_into() end, { desc = 'Debug: Step Into' })
|
|
||||||
vim.keymap.set('n', '<F2>', function() require('dap').step_over() end, { desc = 'Debug: Step Over' })
|
|
||||||
vim.keymap.set('n', '<F3>', function() require('dap').step_out() end, { desc = 'Debug: Step Out' })
|
|
||||||
vim.keymap.set('n', '<leader>b', function() require('dap').toggle_breakpoint() end, { desc = 'Debug: Toggle Breakpoint' })
|
|
||||||
vim.keymap.set('n', '<leader>B', function() require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ') end, { desc = 'Debug: Set Breakpoint' })
|
|
||||||
-- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
|
|
||||||
vim.keymap.set('n', '<F7>', function() require('dapui').toggle() end, { desc = 'Debug: See last session result.' })
|
|
||||||
|
|
||||||
local dap = require 'dap'
|
-- Installs the debug adapters for you
|
||||||
local dapui = require 'dapui'
|
'mason-org/mason.nvim',
|
||||||
|
'jay-babu/mason-nvim-dap.nvim',
|
||||||
|
|
||||||
require('mason-nvim-dap').setup {
|
-- Add your own debuggers here
|
||||||
|
'leoluz/nvim-dap-go',
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
-- Basic debugging keymaps, feel free to change to your liking!
|
||||||
|
{ '<F5>', function() require('dap').continue() end, desc = 'Debug: Start/Continue' },
|
||||||
|
{ '<F1>', function() require('dap').step_into() end, desc = 'Debug: Step Into' },
|
||||||
|
{ '<F2>', function() require('dap').step_over() end, desc = 'Debug: Step Over' },
|
||||||
|
{ '<F3>', function() require('dap').step_out() end, desc = 'Debug: Step Out' },
|
||||||
|
{ '<leader>b', function() require('dap').toggle_breakpoint() end, desc = 'Debug: Toggle Breakpoint' },
|
||||||
|
{ '<leader>B', function() require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ') end, desc = 'Debug: Set Breakpoint' },
|
||||||
|
-- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
|
||||||
|
{ '<F7>', function() require('dapui').toggle() end, desc = 'Debug: See last session result.' },
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
local dap = require 'dap'
|
||||||
|
local dapui = require 'dapui'
|
||||||
|
|
||||||
|
require('mason-nvim-dap').setup {
|
||||||
-- Makes a best effort to setup the various debuggers with
|
-- Makes a best effort to setup the various debuggers with
|
||||||
-- reasonable debug configurations
|
-- reasonable debug configurations
|
||||||
automatic_installation = true,
|
automatic_installation = true,
|
||||||
@ -43,12 +56,12 @@ require('mason-nvim-dap').setup {
|
|||||||
-- Update this to ensure that you have the debuggers for the langs you want
|
-- Update this to ensure that you have the debuggers for the langs you want
|
||||||
'delve',
|
'delve',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Dap UI setup
|
-- Dap UI setup
|
||||||
-- For more information, see |:help nvim-dap-ui|
|
-- For more information, see |:help nvim-dap-ui|
|
||||||
---@diagnostic disable-next-line: missing-fields
|
---@diagnostic disable-next-line: missing-fields
|
||||||
dapui.setup {
|
dapui.setup {
|
||||||
-- Set icons to characters that are more likely to work in every terminal.
|
-- Set icons to characters that are more likely to work in every terminal.
|
||||||
-- Feel free to remove or use ones that you like more! :)
|
-- Feel free to remove or use ones that you like more! :)
|
||||||
-- Don't feel like these are good choices.
|
-- Don't feel like these are good choices.
|
||||||
@ -67,29 +80,31 @@ dapui.setup {
|
|||||||
disconnect = '⏏',
|
disconnect = '⏏',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Change breakpoint icons
|
-- Change breakpoint icons
|
||||||
-- vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' })
|
-- vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' })
|
||||||
-- vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' })
|
-- vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' })
|
||||||
-- local breakpoint_icons = vim.g.have_nerd_font
|
-- local breakpoint_icons = vim.g.have_nerd_font
|
||||||
-- and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
|
-- and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
|
||||||
-- or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' }
|
-- or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' }
|
||||||
-- for type, icon in pairs(breakpoint_icons) do
|
-- for type, icon in pairs(breakpoint_icons) do
|
||||||
-- local tp = 'Dap' .. type
|
-- local tp = 'Dap' .. type
|
||||||
-- local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak'
|
-- local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak'
|
||||||
-- vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl })
|
-- vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl })
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
dap.listeners.after.event_initialized['dapui_config'] = dapui.open
|
dap.listeners.after.event_initialized['dapui_config'] = dapui.open
|
||||||
dap.listeners.before.event_terminated['dapui_config'] = dapui.close
|
dap.listeners.before.event_terminated['dapui_config'] = dapui.close
|
||||||
dap.listeners.before.event_exited['dapui_config'] = dapui.close
|
dap.listeners.before.event_exited['dapui_config'] = dapui.close
|
||||||
|
|
||||||
-- Install golang specific config
|
-- Install golang specific config
|
||||||
require('dap-go').setup {
|
require('dap-go').setup {
|
||||||
delve = {
|
delve = {
|
||||||
-- On Windows delve must be run attached or it crashes.
|
-- On Windows delve must be run attached or it crashes.
|
||||||
-- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring
|
-- See https://github.com/leoluz/nvim-dap-go/blob/main/README.md#configuring
|
||||||
detached = vim.fn.has 'win32' == 0,
|
detached = vim.fn.has 'win32' == 0,
|
||||||
},
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,9 +2,14 @@
|
|||||||
-- NOTE: gitsigns is already included in init.lua but contains only the base
|
-- NOTE: gitsigns is already included in init.lua but contains only the base
|
||||||
-- config. This will add also the recommended keymaps.
|
-- config. This will add also the recommended keymaps.
|
||||||
|
|
||||||
vim.pack.add { 'https://github.com/lewis6991/gitsigns.nvim' }
|
---@module 'lazy'
|
||||||
|
---@type LazySpec
|
||||||
require('gitsigns').setup {
|
return {
|
||||||
|
'lewis6991/gitsigns.nvim',
|
||||||
|
---@module 'gitsigns'
|
||||||
|
---@type Gitsigns.Config
|
||||||
|
---@diagnostic disable-next-line: missing-fields
|
||||||
|
opts = {
|
||||||
on_attach = function(bufnr)
|
on_attach = function(bufnr)
|
||||||
local gitsigns = require 'gitsigns'
|
local gitsigns = require 'gitsigns'
|
||||||
|
|
||||||
@ -54,4 +59,5 @@ require('gitsigns').setup {
|
|||||||
-- Text object
|
-- Text object
|
||||||
map({ 'o', 'x' }, 'ih', gitsigns.select_hunk)
|
map({ 'o', 'x' }, 'ih', gitsigns.select_hunk)
|
||||||
end,
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,13 @@
|
|||||||
-- Add indentation guides even on blank lines
|
-- Add indentation guides even on blank lines
|
||||||
|
|
||||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
---@module 'lazy'
|
||||||
-- See `:help ibl`
|
---@type LazySpec
|
||||||
vim.pack.add { 'https://github.com/lukas-reineke/indent-blankline.nvim' }
|
return {
|
||||||
require('ibl').setup {}
|
'lukas-reineke/indent-blankline.nvim',
|
||||||
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||||
|
-- See `:help ibl`
|
||||||
|
main = 'ibl',
|
||||||
|
---@module 'ibl'
|
||||||
|
---@type ibl.config
|
||||||
|
opts = {},
|
||||||
|
}
|
||||||
|
|||||||
@ -1,48 +1,52 @@
|
|||||||
-- Linting
|
-- Linting
|
||||||
|
|
||||||
vim.pack.add { 'https://github.com/mfussenegger/nvim-lint' }
|
---@module 'lazy'
|
||||||
|
---@type LazySpec
|
||||||
local lint = require 'lint'
|
return {
|
||||||
lint.linters_by_ft = {
|
'mfussenegger/nvim-lint',
|
||||||
|
event = { 'BufReadPre', 'BufNewFile' },
|
||||||
|
config = function()
|
||||||
|
local lint = require 'lint'
|
||||||
|
lint.linters_by_ft = {
|
||||||
markdown = { 'markdownlint' }, -- Make sure to install `markdownlint` via mason / npm
|
markdown = { 'markdownlint' }, -- Make sure to install `markdownlint` via mason / npm
|
||||||
}
|
}
|
||||||
|
|
||||||
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
||||||
-- instead set linters_by_ft like this:
|
-- instead set linters_by_ft like this:
|
||||||
-- lint.linters_by_ft = lint.linters_by_ft or {}
|
-- lint.linters_by_ft = lint.linters_by_ft or {}
|
||||||
-- lint.linters_by_ft['markdown'] = { 'markdownlint' }
|
-- lint.linters_by_ft['markdown'] = { 'markdownlint' }
|
||||||
--
|
--
|
||||||
-- However, note that this will enable a set of default linters,
|
-- However, note that this will enable a set of default linters,
|
||||||
-- which will cause errors unless these tools are available:
|
-- which will cause errors unless these tools are available:
|
||||||
-- {
|
-- {
|
||||||
-- clojure = { "clj-kondo" },
|
-- clojure = { "clj-kondo" },
|
||||||
-- dockerfile = { "hadolint" },
|
-- dockerfile = { "hadolint" },
|
||||||
-- inko = { "inko" },
|
-- inko = { "inko" },
|
||||||
-- janet = { "janet" },
|
-- janet = { "janet" },
|
||||||
-- json = { "jsonlint" },
|
-- json = { "jsonlint" },
|
||||||
-- markdown = { "vale" },
|
-- markdown = { "vale" },
|
||||||
-- rst = { "vale" },
|
-- rst = { "vale" },
|
||||||
-- ruby = { "ruby" },
|
-- ruby = { "ruby" },
|
||||||
-- terraform = { "tflint" },
|
-- terraform = { "tflint" },
|
||||||
-- text = { "vale" }
|
-- text = { "vale" }
|
||||||
-- }
|
-- }
|
||||||
--
|
--
|
||||||
-- You can disable the default linters by setting their filetypes to nil:
|
-- You can disable the default linters by setting their filetypes to nil:
|
||||||
-- lint.linters_by_ft['clojure'] = nil
|
-- lint.linters_by_ft['clojure'] = nil
|
||||||
-- lint.linters_by_ft['dockerfile'] = nil
|
-- lint.linters_by_ft['dockerfile'] = nil
|
||||||
-- lint.linters_by_ft['inko'] = nil
|
-- lint.linters_by_ft['inko'] = nil
|
||||||
-- lint.linters_by_ft['janet'] = nil
|
-- lint.linters_by_ft['janet'] = nil
|
||||||
-- lint.linters_by_ft['json'] = nil
|
-- lint.linters_by_ft['json'] = nil
|
||||||
-- lint.linters_by_ft['markdown'] = nil
|
-- lint.linters_by_ft['markdown'] = nil
|
||||||
-- lint.linters_by_ft['rst'] = nil
|
-- lint.linters_by_ft['rst'] = nil
|
||||||
-- lint.linters_by_ft['ruby'] = nil
|
-- lint.linters_by_ft['ruby'] = nil
|
||||||
-- lint.linters_by_ft['terraform'] = nil
|
-- lint.linters_by_ft['terraform'] = nil
|
||||||
-- lint.linters_by_ft['text'] = nil
|
-- lint.linters_by_ft['text'] = nil
|
||||||
|
|
||||||
-- Create autocommand which carries out the actual linting
|
-- Create autocommand which carries out the actual linting
|
||||||
-- on the specified events.
|
-- on the specified events.
|
||||||
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
||||||
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
||||||
group = lint_augroup,
|
group = lint_augroup,
|
||||||
callback = function()
|
callback = function()
|
||||||
-- Only run the linter in buffers that you can modify in order to
|
-- Only run the linter in buffers that you can modify in order to
|
||||||
@ -50,4 +54,6 @@ vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
|||||||
-- describe the hovered symbol using Markdown.
|
-- describe the hovered symbol using Markdown.
|
||||||
if vim.bo.modifiable then lint.try_lint() end
|
if vim.bo.modifiable then lint.try_lint() end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|||||||
@ -1,21 +1,23 @@
|
|||||||
-- Neo-tree is a Neovim plugin to browse the file system
|
-- Neo-tree is a Neovim plugin to browse the file system
|
||||||
-- https://github.com/nvim-neo-tree/neo-tree.nvim
|
-- https://github.com/nvim-neo-tree/neo-tree.nvim
|
||||||
|
|
||||||
local plugins = {
|
---@module 'lazy'
|
||||||
{ src = 'https://github.com/nvim-neo-tree/neo-tree.nvim', version = vim.version.range '*' },
|
---@type LazySpec
|
||||||
'https://github.com/nvim-lua/plenary.nvim',
|
return {
|
||||||
'https://github.com/MunifTanjim/nui.nvim',
|
'nvim-neo-tree/neo-tree.nvim',
|
||||||
}
|
version = '*',
|
||||||
|
dependencies = {
|
||||||
if vim.g.have_nerd_font then
|
'nvim-lua/plenary.nvim',
|
||||||
table.insert(plugins, 'https://github.com/nvim-tree/nvim-web-devicons') -- not strictly required, but recommended
|
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
|
||||||
end
|
'MunifTanjim/nui.nvim',
|
||||||
|
},
|
||||||
vim.pack.add(plugins)
|
lazy = false,
|
||||||
|
keys = {
|
||||||
vim.keymap.set('n', '\\', '<Cmd>Neotree reveal<CR>', { desc = 'NeoTree reveal', silent = true })
|
{ '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true },
|
||||||
|
},
|
||||||
require('neo-tree').setup {
|
---@module 'neo-tree'
|
||||||
|
---@type neotree.Config
|
||||||
|
opts = {
|
||||||
filesystem = {
|
filesystem = {
|
||||||
window = {
|
window = {
|
||||||
mappings = {
|
mappings = {
|
||||||
@ -23,4 +25,5 @@ require('neo-tree').setup {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user