chore(config): use vscode-neovim

main
sudo pacman -Syu 2022-07-30 11:21:21 +07:00
parent 5c33f6bda6
commit bf1f97089f
No known key found for this signature in database
GPG Key ID: D6CB5C6C567C47B0
1 changed files with 129 additions and 126 deletions

View File

@ -1,28 +1,30 @@
vim.opt.breakindent = true
vim.opt.completeopt = { "menuone", "noinsert", "noselect" }
vim.opt.swapfile = false
vim.opt.title = true
vim.opt.virtualedit = "block"
vim.opt.whichwrap = "<,>,[,]"
-- https://github.com/vscode-neovim/vscode-neovim
if not vim.g.vscode then
vim.opt.breakindent = true
vim.opt.completeopt = { "menuone", "noinsert", "noselect" }
vim.opt.swapfile = false
vim.opt.title = true
vim.opt.virtualedit = "block"
vim.opt.whichwrap = "<,>,[,]"
-- Line number
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.scrolloff = 4
-- Line number
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.scrolloff = 4
-- Tab
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Tab
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Clipboard support
vim.opt.clipboard:append({ "unnamedplus" })
-- Clipboard support
vim.opt.clipboard:append({ "unnamedplus" })
-- Mouse support
vim.opt.mouse = "a"
-- Mouse support
vim.opt.mouse = "a"
-- GUI support
vim.opt.guifont = {
-- GUI support
vim.opt.guifont = {
"APL385 Unicode:h18",
"Agave:h18",
"Victor Mono:h18",
@ -31,39 +33,39 @@ vim.opt.guifont = {
"JetBrains Mono:h18",
"Iosevka:h18",
"Fira Code:h18",
}
}
-- Workaround
-- https://github.com/neovim/neovim/issues/16416
vim.keymap.set("i", "<C-c>", "<Esc>")
-- Workaround
-- https://github.com/neovim/neovim/issues/16416
vim.keymap.set("i", "<C-c>", "<Esc>")
-- Disable showmode when use lualine
vim.opt.showmode = false
-- Disable showmode when use lualine
vim.opt.showmode = false
-- NvimTree kepmap
vim.keymap.set("n", "<C-n>", ":NvimTreeToggle<CR>")
vim.keymap.set("n", "<leader>r", ":NvimTreeRefresh<CR>")
vim.keymap.set("n", "<leader>n", ":NvimTreeFindFile<CR>")
-- NvimTree kepmap
vim.keymap.set("n", "<C-n>", ":NvimTreeToggle<CR>")
vim.keymap.set("n", "<leader>r", ":NvimTreeRefresh<CR>")
vim.keymap.set("n", "<leader>n", ":NvimTreeFindFile<CR>")
-- Use catppuccin
vim.g.catppuccin_flavour = "mocha"
-- Use catppuccin
vim.g.catppuccin_flavour = "mocha"
-- Use gofumpt
vim.g.go_gopls_gofumpt = 1
-- Use gofumpt
vim.g.go_gopls_gofumpt = 1
-- Use copilot
vim.g.copilot_filetypes = {
-- Use copilot
vim.g.copilot_filetypes = {
["*"] = false,
go = true,
proto = true,
yaml = true,
}
}
-- Use fzf
vim.opt.rtp:append({ "~/.fzf" })
-- Use fzf
vim.opt.rtp:append({ "~/.fzf" })
-- https://github.com/wbthomason/packer.nvim
require("packer").startup(function()
-- https://github.com/wbthomason/packer.nvim
require("packer").startup(function()
-- Manage itself
use("wbthomason/packer.nvim")
@ -98,14 +100,14 @@ require("packer").startup(function()
-- https://github.com/github/copilot.vim
use("github/copilot.vim")
end)
end)
local lualine_theme = require("lualine.themes.iceberg")
if vim.env.COLORTERM == "truecolor" then
local lualine_theme = require("lualine.themes.iceberg")
if vim.env.COLORTERM == "truecolor" then
lualine_theme = require("lualine.themes.catppuccin")
end
end
require("lualine").setup({
require("lualine").setup({
options = {
icons_enabled = false,
theme = lualine_theme,
@ -113,9 +115,9 @@ require("lualine").setup({
section_separators = { left = "", right = "" },
},
extensions = { "fzf", "nvim-tree", "toggleterm" },
})
})
require("nvim-tree").setup({
require("nvim-tree").setup({
renderer = {
icons = {
show = {
@ -133,25 +135,26 @@ require("nvim-tree").setup({
filters = {
custom = { "^\\.git$" },
},
})
})
require("indent_blankline").setup()
require("indent_blankline").setup()
local catppuccin_term_colors = false
if vim.env.COLORTERM == "truecolor" then
local catppuccin_term_colors = false
if vim.env.COLORTERM == "truecolor" then
catppuccin_term_colors = true
end
end
require("catppuccin").setup({
require("catppuccin").setup({
term_colors = catppuccin_term_colors,
compile = {
enabled = true,
},
})
})
if vim.env.COLORTERM == "truecolor" then
if vim.env.COLORTERM == "truecolor" then
vim.opt.termguicolors = true
vim.cmd([[ colorscheme catppuccin ]])
else
else
vim.cmd([[ colorscheme iceberg ]])
end
end