mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
feat(nvim): Build another nvim from scratch
* Neovim: Backup original LazyVim setup to .config/nvim.lazy.d * Neovim: Currently done with basic completions and LSP * Git: Always use ssh to connect github remote * Zsh: Add more antidots config
This commit is contained in:
parent
74f2883139
commit
eeb3387112
53 changed files with 1617 additions and 682 deletions
|
|
@ -1,8 +1,20 @@
|
|||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||
if (vim.g.vscode) then
|
||||
print("VSCode detected, skipping lazy loading")
|
||||
require("vscode.code")
|
||||
else
|
||||
require("config.lazy")
|
||||
-- require("config.lazy")
|
||||
end
|
||||
--[[
|
||||
-*- coding: utf-8 -*-
|
||||
@Filename init.lua
|
||||
@Author js0ny
|
||||
@Date 2024-11-27
|
||||
@Description neovim 配置文件
|
||||
]]
|
||||
-- 加载配置
|
||||
require("config.options")
|
||||
-- 加载键位映射
|
||||
require("config.keymaps")
|
||||
|
||||
-- 加载插件
|
||||
require("plugins")
|
||||
|
||||
-- 加载主题
|
||||
require("config.colorscheme")
|
||||
|
||||
|
||||
-- vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = open_nvim_tree })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue