From 25912afb80d949604b4924afccc7bc077c5938d7 Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Sun, 27 Apr 2025 11:50:36 +0800 Subject: [PATCH] feat add nvim --- dot_config/nvim/Readme.md | 23 +++ dot_config/nvim/init.vim | 1 + dot_config/nvim/lua/config/gui.lua | 2 + dot_config/nvim/lua/config/lazy.lua | 35 +++++ dot_config/nvim/lua/config/options.lua | 6 + dot_config/nvim/lua/init.lua | 3 + dot_config/nvim/lua/plugins/example.lua | 197 ++++++++++++++++++++++++ 7 files changed, 267 insertions(+) create mode 100644 dot_config/nvim/Readme.md create mode 100644 dot_config/nvim/init.vim create mode 100644 dot_config/nvim/lua/config/gui.lua create mode 100644 dot_config/nvim/lua/config/lazy.lua create mode 100644 dot_config/nvim/lua/config/options.lua create mode 100644 dot_config/nvim/lua/init.lua create mode 100644 dot_config/nvim/lua/plugins/example.lua diff --git a/dot_config/nvim/Readme.md b/dot_config/nvim/Readme.md new file mode 100644 index 0000000..b455310 --- /dev/null +++ b/dot_config/nvim/Readme.md @@ -0,0 +1,23 @@ +Yuan Neovim 備忘 +=== + +## 資料夾結構 + +``` +dot_config/nvim +├── init.vim #主要設定進入點 傳統vim設定檔 (傳統語法兼容用) +├── lua +│ ├── init.lua #主要設定進入點 新式給nvim專用設定 +│ ├── config +│ │ ├── gui.lua +│ │ ├── lazy.lua +│ │ └── options.lua +│ └── plugins +│ └── example.lua #LazyNvim給的範例,已經被第一段截斷掉,所以此腳本將不會執行 +└── Readme.md + ``` + + + ## 代找外掛 + * Align + * \ No newline at end of file diff --git a/dot_config/nvim/init.vim b/dot_config/nvim/init.vim new file mode 100644 index 0000000..f161c60 --- /dev/null +++ b/dot_config/nvim/init.vim @@ -0,0 +1 @@ + lua require('init') diff --git a/dot_config/nvim/lua/config/gui.lua b/dot_config/nvim/lua/config/gui.lua new file mode 100644 index 0000000..51f98f9 --- /dev/null +++ b/dot_config/nvim/lua/config/gui.lua @@ -0,0 +1,2 @@ +vim.o.guifont = "MesloLGS NF:h10" +vim.g.neovide_input_ime = true diff --git a/dot_config/nvim/lua/config/lazy.lua b/dot_config/nvim/lua/config/lazy.lua new file mode 100644 index 0000000..92eb4a8 --- /dev/null +++ b/dot_config/nvim/lua/config/lazy.lua @@ -0,0 +1,35 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or vim.loop).fs_stat(lazypath) then + local lazyrepo = "https://github.com/folke/lazy.nvim.git" + local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) + if vim.v.shell_error ~= 0 then + vim.api.nvim_echo({ + { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, + { out, "WarningMsg" }, + { "\nPress any key to exit..." }, + }, true, {}) + vim.fn.getchar() + os.exit(1) + end +end +vim.opt.rtp:prepend(lazypath) + +-- Make sure to setup `mapleader` and `maplocalleader` before +-- loading lazy.nvim so that mappings are correct. +-- This is also a good place to setup other settings (vim.opt) +-- vim.g.mapleader = " " +-- vim.g.maplocalleader = "\\" + +-- Setup lazy.nvim +require("lazy").setup({ + spec = { + -- import your plugins + { import = "plugins" }, + }, + -- Configure any other settings here. See the documentation for more details. + -- colorscheme that will be used when installing plugins. +-- install = { colorscheme = { "habamax" } }, + -- automatically check for plugin updates + checker = { enabled = true }, +}) diff --git a/dot_config/nvim/lua/config/options.lua b/dot_config/nvim/lua/config/options.lua new file mode 100644 index 0000000..1f85696 --- /dev/null +++ b/dot_config/nvim/lua/config/options.lua @@ -0,0 +1,6 @@ +vim.opt.number = true -- 顯示行號 +vim.opt.relativenumber = false -- 相對行號 +vim.opt.tabstop = 4 -- tab鍵寬度 +vim.opt.shiftwidth = 4 -- 自動縮排寬度 +vim.opt.expandtab = true -- 使用空格代替tab +vim.opt.termguicolors = true -- 支持真彩色 diff --git a/dot_config/nvim/lua/init.lua b/dot_config/nvim/lua/init.lua new file mode 100644 index 0000000..9f8d4e0 --- /dev/null +++ b/dot_config/nvim/lua/init.lua @@ -0,0 +1,3 @@ +require("config.options") +require("config.gui") +require("config.lazy") diff --git a/dot_config/nvim/lua/plugins/example.lua b/dot_config/nvim/lua/plugins/example.lua new file mode 100644 index 0000000..17f53d6 --- /dev/null +++ b/dot_config/nvim/lua/plugins/example.lua @@ -0,0 +1,197 @@ +-- since this is just an example spec, don't actually load anything here and return an empty spec +-- stylua: ignore +if true then return {} end + +-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim +-- +-- In your plugin files, you can: +-- * add extra plugins +-- * disable/enabled LazyVim plugins +-- * override the configuration of LazyVim plugins +return { + -- add gruvbox + { "ellisonleao/gruvbox.nvim" }, + + -- Configure LazyVim to load gruvbox + { + "LazyVim/LazyVim", + opts = { + colorscheme = "gruvbox", + }, + }, + + -- change trouble config + { + "folke/trouble.nvim", + -- opts will be merged with the parent spec + opts = { use_diagnostic_signs = true }, + }, + + -- disable trouble + { "folke/trouble.nvim", enabled = false }, + + -- override nvim-cmp and add cmp-emoji + { + "hrsh7th/nvim-cmp", + dependencies = { "hrsh7th/cmp-emoji" }, + ---@param opts cmp.ConfigSchema + opts = function(_, opts) + table.insert(opts.sources, { name = "emoji" }) + end, + }, + + -- change some telescope options and a keymap to browse plugin files + { + "nvim-telescope/telescope.nvim", + keys = { + -- add a keymap to browse plugin files + -- stylua: ignore + { + "fp", + function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end, + desc = "Find Plugin File", + }, + }, + -- change some options + opts = { + defaults = { + layout_strategy = "horizontal", + layout_config = { prompt_position = "top" }, + sorting_strategy = "ascending", + winblend = 0, + }, + }, + }, + + -- add pyright to lspconfig + { + "neovim/nvim-lspconfig", + ---@class PluginLspOpts + opts = { + ---@type lspconfig.options + servers = { + -- pyright will be automatically installed with mason and loaded with lspconfig + pyright = {}, + }, + }, + }, + + -- add tsserver and setup with typescript.nvim instead of lspconfig + { + "neovim/nvim-lspconfig", + dependencies = { + "jose-elias-alvarez/typescript.nvim", + init = function() + require("lazyvim.util").lsp.on_attach(function(_, buffer) + -- stylua: ignore + vim.keymap.set( "n", "co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" }) + vim.keymap.set("n", "cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer }) + end) + end, + }, + ---@class PluginLspOpts + opts = { + ---@type lspconfig.options + servers = { + -- tsserver will be automatically installed with mason and loaded with lspconfig + tsserver = {}, + }, + -- you can do any additional lsp server setup here + -- return true if you don't want this server to be setup with lspconfig + ---@type table + setup = { + -- example to setup with typescript.nvim + tsserver = function(_, opts) + require("typescript").setup({ server = opts }) + return true + end, + -- Specify * to use this function as a fallback for any server + -- ["*"] = function(server, opts) end, + }, + }, + }, + + -- for typescript, LazyVim also includes extra specs to properly setup lspconfig, + -- treesitter, mason and typescript.nvim. So instead of the above, you can use: + { import = "lazyvim.plugins.extras.lang.typescript" }, + + -- add more treesitter parsers + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "bash", + "html", + "javascript", + "json", + "lua", + "markdown", + "markdown_inline", + "python", + "query", + "regex", + "tsx", + "typescript", + "vim", + "yaml", + }, + }, + }, + + -- since `vim.tbl_deep_extend`, can only merge tables and not lists, the code above + -- would overwrite `ensure_installed` with the new value. + -- If you'd rather extend the default config, use the code below instead: + { + "nvim-treesitter/nvim-treesitter", + opts = function(_, opts) + -- add tsx and treesitter + vim.list_extend(opts.ensure_installed, { + "tsx", + "typescript", + }) + end, + }, + + -- the opts function can also be used to change the default opts: + { + "nvim-lualine/lualine.nvim", + event = "VeryLazy", + opts = function(_, opts) + table.insert(opts.sections.lualine_x, { + function() + return "😄" + end, + }) + end, + }, + + -- or you can return new options to override all the defaults + { + "nvim-lualine/lualine.nvim", + event = "VeryLazy", + opts = function() + return { + --[[add your custom lualine config here]] + } + end, + }, + + -- use mini.starter instead of alpha + { import = "lazyvim.plugins.extras.ui.mini-starter" }, + + -- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc + { import = "lazyvim.plugins.extras.lang.json" }, + + -- add any tools you want to have installed below + { + "williamboman/mason.nvim", + opts = { + ensure_installed = { + "stylua", + "shellcheck", + "shfmt", + "flake8", + }, + }, + }, +}