Browse Source

完成基础配置

scorpio 1 year ago
parent
commit
56420ffadb

+ 10 - 2
init.lua

@@ -4,5 +4,13 @@ require('basic')
 require('keybindings')
 --  插件
 require('plugins')
--- 
-require('plugin-config.bufferline')
+-- 主题设置
+require("colorscheme")
+-- 自动命令
+require("autocmd")
+-- 插件配置
+require("plugin-config.lualine")
+require("plugin-config.nvim-tree")
+require("plugin-config.dashboard")
+require("plugin-config.project")
+

+ 17 - 0
lua/autocmd.lua

@@ -0,0 +1,17 @@
+local myAutoGroup = vim.api.nvim_create_augroup("myAutoGroup", {
+    clear = true,
+  })
+  
+  local autocmd = vim.api.nvim_create_autocmd
+
+  -- 修改lua/plugins.lua 自动更新插件
+  autocmd("BufWritePost", {
+    group = myAutoGroup,
+    -- autocmd BufWritePost plugins.lua source <afile> | PackerSync
+    callback = function()
+      if vim.fn.expand("<afile>") == "lua/plugins.lua" then
+        vim.api.nvim_command("source lua/plugins.lua")
+        vim.api.nvim_command("PackerSync")
+      end
+    end,
+  })

+ 2 - 2
lua/basic.lua

@@ -18,7 +18,7 @@ vim.o.tabstop = 2
 vim.bo.tabstop = 2
 vim.o.softtabstop = 2
 vim.o.shiftround = 2
---  时移长
+--  时移长scsc
 vim.o.shiftwidth = 2
 vim.bo.shiftwidth = 2
 -- 空格替代tab
@@ -77,6 +77,6 @@ vim.o.pumheight = 10
 -- 永远显示 tabline
 vim.o.showtabline = 2
 -- 使用增强状态栏插件后不再需要 vim 的模式提示
-vim.o.showmode = false
+vim.o.showmode = true
 -- 配置剪贴板
 vim.opt.clipboard = "unnamedplus"

+ 18 - 0
lua/colorscheme.lua

@@ -0,0 +1,18 @@
+vim.o.background = "dark"
+vim.g.tokyonight_style = "storm" -- day / night
+-- 半透明
+-- vim.g.tokyonight_transparent = true
+-- vim.g.tokyonight_transparent_sidebar = true
+local colorscheme = "tokyonight"
+-- tokyonight
+-- OceanicNext
+-- gruvbox
+-- zephyr
+-- nord
+-- onedark
+-- nightfox
+local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
+if not status_ok then
+  vim.notify("colorscheme: " .. colorscheme .. " 没有找到!")
+  return
+end

+ 108 - 13
lua/keybindings.lua

@@ -5,33 +5,30 @@
 --   visual_block_mode = "x",
 --   term_mode = "t",
 --   command_mode = "c",
-
 -- leader key 为空
-vim.g.mapleader=" "
+vim.g.mapleader = " "
 vim.g.maplocalleader = " "
-
+-- MAC 设置alt 键
 alt_send_esc = true
 
 local opt = {
-  noremap = true,
-  silent = true,
+    noremap = true,
+    silent = true
 }
-
 -- 本地变量
 local map = vim.api.nvim_set_keymap
 
--- 分屏
+-- 取消 s 默认功能
+map("n", "s", "", opt)
 map("n", "sv", ":vsp<CR>", opt)
 map("n", "sh", ":sp<CR>", opt)
--- 关闭当前窗口
 map("n", "sc", "<C-w>c", opt)
--- 关闭其他窗口
 map("n", "so", "<C-w>o", opt)
 -- 切换窗口
-map("n", "<A-h>", "<C-w>h", opt)
-map("n", "<A-j>", "<C-w>j", opt)
-map("n", "<A-k>", "<C-w>k", opt)
-map("n", "<A-l>", "<C-w>l", opt)
+map("n", "<A-Right>", "<C-w>l", opt)
+map("n", "<A-Down>", "<C-w>j", opt)
+map("n", "<A-Up>", "<C-w>k", opt)
+map("n", "<A-Left>", "<C-w>h", opt)
 -- terminal 相关
 map("n", "<leader>t", ":sp | terminal<CR>", opt)
 -- 代码缩进
@@ -39,3 +36,101 @@ map("v", "<", "<gv", opt)
 map("v", ">", ">gv", opt)
 map("v", "J", ":move '>+1<CR>gv-gv>'", opt)
 map("v", "K", ":move '<-2<CR>gv-gv>'", opt)
+-- 保存配置
+map("n", "<leader>w", ":w<CR>", opt)
+map("n", "<leader>wq", ":wqa!<CR>", opt)
+-- 退出
+map("n", "qq", ":q!<CR>", opt)
+map("n", "<leader>q", ":qa!<CR>", opt)
+-- 上下滚动浏览
+map("n", "<C-j>", "5j", opt)
+map("n", "<C-k>", "5k", opt)
+map("v", "<C-j>", "5j", opt)
+map("v", "<C-k>", "5k", opt)
+
+-- Telescope 查找文件
+-- 文件名查找
+map("n", "<leader>f", ":Telescope find_files<CR>", opt)
+-- 全局搜索 关键词key 查找
+map("n", "<leader>k", ":Telescope live_grep<CR>", opt)
+-- git 文件
+map("n", "<leader>g", ":Telescope git_files<CR>", opt)
+-- project
+map("n", "<leader>p", ":Telescope projects<CR>", opt)
+-- 插件快捷键
+local pluginKeys = {}
+
+-- nvim-tree
+map("n", "<leader>e", ":NvimTreeToggle<CR>", opt)
+-- 列表快捷键
+pluginKeys.nvimTreeList = { -- 打开文件或文件夹
+{
+    key = {"o", "<2-LeftMouse>"},
+    action = "edit"
+}, {
+    key = "<CR>",
+    action = "system_open"
+}, -- v分屏打开文件
+{
+    key = "v",
+    action = "vsplit"
+}, -- h分屏打开文件
+{
+    key = "h",
+    action = "split"
+}, -- Ignore (node_modules)
+{
+    key = "i",
+    action = "toggle_ignored"
+}, -- Hide (dotfiles)
+{
+    key = ".",
+    action = "toggle_dotfiles"
+}, {
+    key = "R",
+    action = "refresh"
+}, -- 文件操作
+{
+    key = "a",
+    action = "create"
+}, {
+    key = "d",
+    action = "remove"
+}, {
+    key = "r",
+    action = "rename"
+}, {
+    key = "x",
+    action = "cut"
+}, {
+    key = "c",
+    action = "copy"
+}, {
+    key = "p",
+    action = "paste"
+}, {
+    key = "y",
+    action = "copy_name"
+}, {
+    key = "Y",
+    action = "copy_path"
+}, {
+    key = "gy",
+    action = "copy_absolute_path"
+}, {
+    key = "I",
+    action = "toggle_file_info"
+}, {
+    key = "n",
+    action = "tabnew"
+}, -- 进入下一级
+{
+    key = {"]"},
+    action = "cd"
+}, -- 进入上一级
+{
+    key = {"["},
+    action = "dir_up"
+}}
+
+return pluginKeys

+ 53 - 0
lua/plugin-config/dashboard.lua

@@ -0,0 +1,53 @@
+local status, db = pcall(require, "dashboard")
+if not status then
+    vim.notify("没有找到 dashboard")
+    return
+end
+
+db.setup({
+    theme = 'doom',
+    config = {
+        header = {[[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]],
+                  [[          ▀████▀▄▄              ▄█ ]],
+                  [[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
+                  [[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
+                  [[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
+                  [[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
+                  [[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
+                  [[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
+                  [[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
+                  [[   █   █  █      ▄▄           ▄▀   ]], [[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]]}, -- your header
+        center = {{
+            icon = ' ',
+            icon_hl = 'Title',
+            desc = 'Find File           ',
+            desc_hl = 'String',
+            key = 'f',
+            keymap = 'SPC f',
+            key_hl = 'Number',
+            action = 'lua print(2)'
+        }, {
+            icon = ' ',
+            desc = 'Find Word',
+            key = 'k',
+            keymap = 'SPC k',
+            action = 'lua print(3)'
+        }, {
+            icon = ' ',
+            desc = 'Project',
+            key = 'p',
+            keymap = 'SPC p',
+            action = 'lua print(4)'
+        }},
+        footer = db.custom_footer -- your footer
+    }
+})
+
+db.custom_footer = function()
+    local footer = {'', '🎉 Have fun with neovim'}
+    if packer_plugins ~= nil then
+        local count = #vim.tbl_keys(packer_plugins)
+        footer[2] = '🎉 Neovim loaded ' .. count .. ' plugins'
+    end
+    return footer
+end

+ 52 - 0
lua/plugin-config/lualine.lua

@@ -0,0 +1,52 @@
+local status, lualine = pcall(require, "lualine")
+if not status then
+  vim.notify("没有找到 lualine")
+  return
+end
+
+lualine.setup({
+  options = {
+    -- 指定皮肤
+    -- https://github.com/nvim-lualine/lualine.nvim/blob/master/THEMES.md
+    theme = "tokyonight",
+    -- 分割线
+    component_separators = {
+      left = "|",
+      right = "|",
+    },
+    -- https://github.com/ryanoasis/powerline-extra-symbols
+    section_separators = {
+      left = " ",
+      right = "",
+    },
+    globalstatus = true,
+  },
+  extensions = { "nvim-tree" },
+  sections = {
+    lualine_c = {
+      "filename",
+      {
+        "lsp_progress",
+        spinner_symbols = { " ", " ", " ", " ", " ", " " },
+      },
+    },
+    lualine_x = {
+      "filesize",
+      {
+        "fileformat",
+        -- symbols = {
+        --   unix = '', -- e712
+        --   dos = '', -- e70f
+        --   mac = '', -- e711
+        -- },
+        symbols = {
+          unix = "LF",
+          dos = "CRLF",
+          mac = "CR",
+        },
+      },
+      "encoding",
+      "filetype",
+    },
+  },
+})

+ 111 - 0
lua/plugin-config/nvim-tree.lua

@@ -0,0 +1,111 @@
+-- https://github.com/kyazdani42/nvim-tree.lua
+-- local nvim_tree = require'nvim-tree'
+local status, nvim_tree = pcall(require, "nvim-tree")
+if not status then
+    vim.notify("没有找到 nvim-tree")
+    return
+end
+
+-- 列表操作快捷键
+
+local function on_attach(bufnr)
+    local api = require('nvim-tree.api')
+
+    local function opts(desc)
+        return {
+            desc = 'nvim-tree: ' .. desc,
+            buffer = bufnr,
+            noremap = true,
+            silent = true,
+            nowait = true
+        }
+    end
+
+    -- Default mappings not inserted as:
+    --  remove_keymaps = true
+    --  OR
+    --  view.mappings.custom_only = true
+
+    -- Mappings migrated from view.mappings.list
+    --
+    -- You will need to insert "your code goes here" for any mappings with a custom action_cb
+    vim.keymap.set('n', 'o', api.node.open.edit, opts('Open'))
+    vim.keymap.set('n', '<2-LeftMouse>', api.node.open.edit, opts('Open'))
+    vim.keymap.set('n', '<CR>', api.node.run.system, opts('Run System'))
+    vim.keymap.set('n', 'v', api.node.open.vertical, opts('Open: Vertical Split'))
+    vim.keymap.set('n', 'h', api.node.open.horizontal, opts('Open: Horizontal Split'))
+    vim.keymap.set('n', 'i', api.tree.toggle_gitignore_filter, opts('Toggle Git Ignore'))
+    vim.keymap.set('n', '.', api.tree.toggle_hidden_filter, opts('Toggle Dotfiles'))
+    vim.keymap.set('n', 'R', api.tree.reload, opts('Refresh'))
+    vim.keymap.set('n', 'a', api.fs.create, opts('Create'))
+    vim.keymap.set('n', 'd', api.fs.remove, opts('Delete'))
+    vim.keymap.set('n', 'r', api.fs.rename, opts('Rename'))
+    vim.keymap.set('n', 'x', api.fs.cut, opts('Cut'))
+    vim.keymap.set('n', 'c', api.fs.copy.node, opts('Copy'))
+    vim.keymap.set('n', 'p', api.fs.paste, opts('Paste'))
+    vim.keymap.set('n', 'y', api.fs.copy.filename, opts('Copy Name'))
+    vim.keymap.set('n', 'Y', api.fs.copy.relative_path, opts('Copy Relative Path'))
+    vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
+    vim.keymap.set('n', 'I', api.node.show_info_popup, opts('Info'))
+    vim.keymap.set('n', 'n', api.node.open.tab, opts('Open: New Tab'))
+    vim.keymap.set('n', ']', api.tree.change_root_to_node, opts('CD'))
+    vim.keymap.set('n', '[', api.tree.change_root_to_parent, opts('Up'))
+
+end
+
+nvim_tree.setup({
+    on_attach = on_attach,
+    -- 完全禁止内置netrw
+    disable_netrw = true,
+    -- 不显示 git 状态图标
+    git = {
+        enable = false
+    },
+    -- project plugin 需要这样设置
+    update_cwd = true,
+    update_focused_file = {
+        enable = true,
+        update_cwd = true
+    },
+    filters = {
+        -- 隐藏 .文件
+        dotfiles = true
+        -- 隐藏 node_modules 文件夹
+        -- custom = { "node_modules" },
+    },
+    view = {
+        -- 宽度
+        width = 34,
+        -- 也可以 'right'
+        side = "left",
+        -- 隐藏根目录
+        hide_root_folder = false,
+        -- 自定义列表中快捷键
+        mappings = {
+            -- 只用内置快捷键
+            custom_only = true,
+            list = list_keys
+        },
+        -- 不显示行数
+        number = false,
+        relativenumber = false,
+        -- 显示图标
+        signcolumn = "yes"
+    },
+    actions = {
+        open_file = {
+            -- 首次打开大小适配
+            resize_window = true,
+            -- 打开文件时关闭 tree
+            quit_on_open = false
+        }
+    },
+    -- wsl install -g wsl-open
+    -- https://github.com/4U6U57/wsl-open/
+    system_open = {
+        -- mac
+        cmd = "open"
+        -- windows
+        -- cmd = "wsl-open",
+    }
+})

+ 20 - 0
lua/plugin-config/project.lua

@@ -0,0 +1,20 @@
+local status, project = pcall(require, "project_nvim")
+if not status then
+    vim.notify("没有找到 project_nvim")
+    return
+end
+
+-- nvim-tree 支持
+vim.g.nvim_tree_respect_buf_cwd = 1
+
+project.setup({
+    detection_methods = {"pattern"},
+    patterns = {".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", ".sln"}
+})
+
+local status, telescope = pcall(require, "telescope")
+if not status then
+    vim.notify("没有找到 telescope")
+    return
+end
+pcall(telescope.load_extension, "projects")

+ 58 - 74
lua/plugins.lua

@@ -1,79 +1,63 @@
--- 自动安装 Packer.nvim
--- 插件安装目录
--- ~/.local/share/nvim/site/pack/packer/
-local fn = vim.fn
-local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
-local paccker_bootstrap
-if fn.empty(fn.glob(install_path)) > 0 then
-  vim.notify("正在安装Pakcer.nvim,请稍后...")
-  paccker_bootstrap = fn.system({
-    "git",
-    "clone",
-    "--depth",
-    "1",
-    "https://github.com/wbthomason/packer.nvim",
-    -- "https://gitcode.net/mirrors/wbthomason/packer.nvim",
-    install_path,
-  })
-
-  -- https://github.com/wbthomason/packer.nvim/issues/750
-  local rtp_addition = vim.fn.stdpath("data") .. "/site/pack/*/start/*"
-  if not string.find(vim.o.runtimepath, rtp_addition) then
-    vim.o.runtimepath = rtp_addition .. "," .. vim.o.runtimepath
-  end
-  vim.notify("Pakcer.nvim 安装完毕")
-end
-
--- Use a protected call so we don't error out on first use
-local status_ok, packer = pcall(require, "packer")
-if not status_ok then
-  vim.notify("没有安装 packer.nvim")
-  return
-end
-
+local packer = require("packer")
 packer.startup({
-  function(use)
-    -- Packer 可以升级自己
-    use("wbthomason/packer.nvim")
-    -------------------------- plugins -------------------------------------------
-    -- nvim-tree
-    use({
-      "kyazdani42/nvim-tree.lua",
-      requires = "kyazdani42/nvim-web-devicons",
-    })
-     -- lualine
-    use {
-      'nvim-lualine/lualine.nvim',
-      requires = { 'nvim-tree/nvim-web-devicons', opt = true }
+    function(use)
+        -- Packer 可以管理自己本身
+        use 'wbthomason/packer.nvim'
+        -- 你的插件列表...
+        use {
+            'nvim-lualine/lualine.nvim',
+            requires = {
+                'nvim-tree/nvim-web-devicons',
+                opt = true
+            }
+        }
+        -- tokyonight 主题
+        use("folke/tokyonight.nvim")
+        -- nvim-tree  文件侧边栏
+        use({
+            "kyazdani42/nvim-tree.lua",
+            requires = "kyazdani42/nvim-web-devicons"
+        })
+        -- 文件搜索
+        use {
+            'nvim-telescope/telescope.nvim',
+            requires = {"nvim-lua/plenary.nvim"}
+        }
+        -- dashboard-nvim  vim 主页
+        use {
+            'glepnir/dashboard-nvim',
+            event = 'VimEnter',
+            requires = {'nvim-tree/nvim-web-devicons'}
+        }
+        -- project
+        use("ahmedkhalf/project.nvim")
+
+    end,
+    config = {
+        -- 并发数限制
+        max_jobs = 16,
+        -- 自定义源
+        git = {
+            -- default_url_format = "https://hub.fastgit.xyz/%s",
+            -- default_url_format = "https://mirror.ghproxy.com/https://github.com/%s",
+            -- default_url_format = "https://gitcode.net/mirrors/%s",
+            -- default_url_format = "https://gitclone.com/github.com/%s",
+        },
+        display = {
+            open_fn = function()
+                return require("packer.util").float({
+                    border = "single"
+                })
+            end
+        }
     }
-  end,
-  config = {
-    -- 最大并发数
-    max_jobs = 16,
-    -- 自定义源
-    git = {
-      -- default_url_format = "https://hub.fastgit.xyz/%s",
-      -- default_url_format = "https://mirror.ghproxy.com/https://github.com/%s",
-      -- default_url_format = "https://gitcode.net/mirrors/%s",
-      -- default_url_format = "https://gitclone.com/github.com/%s",
-    },
-    display = {
-    -- 使用浮动窗口显示
-      open_fn = function()
-        return require("packer.util").float({ border = "single" })
-      end,
-    },
-  },
 })
 
 -- 每次保存 plugins.lua 自动安装插件
--- move to autocmds.lua
--- pcall(
---   vim.cmd,
---   [[
--- augroup packer_user_config
--- autocmd!
--- autocmd BufWritePost plugins.lua source <afile> | PackerSync
--- augroup end
--- ]]
--- )
+pcall(vim.cmd, [[
+    augroup packer_user_config
+    autocmd!
+    autocmd BufWritePost plugins.lua source <afile> | PackerSync
+    augroup end
+  ]])
+