diff options
author | Yigit Sever | 2024-11-26 14:41:38 +0100 |
---|---|---|
committer | Yigit Sever | 2024-11-26 14:41:38 +0100 |
commit | bac910773a0e4dff87257d4a08bef077641a2eca (patch) | |
tree | ef87e815e2eb1b044c02ea4bdee813a9ffb468a6 /.config/nvim | |
parent | 5671f954ddff3fb60ee6fda3fac664375be1a425 (diff) | |
download | dotfiles-bac910773a0e4dff87257d4a08bef077641a2eca.tar.gz dotfiles-bac910773a0e4dff87257d4a08bef077641a2eca.tar.bz2 dotfiles-bac910773a0e4dff87257d4a08bef077641a2eca.zip |
nvim: add autocmds reference
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/after/plugin/autocmds.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/after/plugin/autocmds.lua b/.config/nvim/after/plugin/autocmds.lua index 3751cd4..bdfaf33 100644 --- a/.config/nvim/after/plugin/autocmds.lua +++ b/.config/nvim/after/plugin/autocmds.lua | |||
@@ -1,3 +1,5 @@ | |||
1 | -- https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua | ||
2 | |||
1 | local function augroup(name) | 3 | local function augroup(name) |
2 | return vim.api.nvim_create_augroup("lazyvim_" .. name, { clear = true }) | 4 | return vim.api.nvim_create_augroup("lazyvim_" .. name, { clear = true }) |
3 | end | 5 | end |