chore: so sad
parent
fdaddf0ac3
commit
1627be953f
|
@ -19,7 +19,7 @@ vim.opt.expandtab = true
|
||||||
vim.opt.breakindent = true
|
vim.opt.breakindent = true
|
||||||
|
|
||||||
-- Clipboard support
|
-- Clipboard support
|
||||||
vim.opt.clipboard:append({ "unnamed" })
|
vim.opt.clipboard:append({ "unnamedplus" })
|
||||||
|
|
||||||
-- Truecolor
|
-- Truecolor
|
||||||
if vim.env.COLORTERM == "truecolor" then
|
if vim.env.COLORTERM == "truecolor" then
|
||||||
|
@ -34,11 +34,6 @@ vim.opt.mouse = "a"
|
||||||
vim.keymap.set("i", "<C-c>", "<Esc>")
|
vim.keymap.set("i", "<C-c>", "<Esc>")
|
||||||
|
|
||||||
-- Keymap
|
-- Keymap
|
||||||
-- Copy/paste to system clipboard
|
|
||||||
vim.keymap.set("n", "<leader>y", '"+y')
|
|
||||||
vim.keymap.set("n", "<leader>Y", '"+Y')
|
|
||||||
vim.keymap.set("n", "<leader>p", '"+p')
|
|
||||||
vim.keymap.set("n", "<leader>P", '"+P')
|
|
||||||
-- Plugin
|
-- Plugin
|
||||||
vim.keymap.set("n", "<leader>s", ":w<CR>")
|
vim.keymap.set("n", "<leader>s", ":w<CR>")
|
||||||
vim.keymap.set("n", "<leader>q", ":FZF<CR>")
|
vim.keymap.set("n", "<leader>q", ":FZF<CR>")
|
||||||
|
@ -95,9 +90,9 @@ require("packer").startup(function()
|
||||||
require("lualine").setup({
|
require("lualine").setup({
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = "auto",
|
-- theme = "auto",
|
||||||
-- theme = "iceberg",
|
-- theme = "iceberg",
|
||||||
-- theme = "catppuccin",
|
theme = "catppuccin",
|
||||||
component_separators = { left = "", right = "" },
|
component_separators = { left = "", right = "" },
|
||||||
section_separators = { left = "", right = "" },
|
section_separators = { left = "", right = "" },
|
||||||
},
|
},
|
||||||
|
@ -202,5 +197,5 @@ require("packer").startup(function()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- vim.api.nvim_command("colorscheme iceberg")
|
-- vim.api.nvim_command("colorscheme iceberg")
|
||||||
vim.api.nvim_command("colorscheme oxocarbon")
|
-- vim.api.nvim_command("colorscheme oxocarbon")
|
||||||
-- vim.api.nvim_command("colorscheme catppuccin")
|
vim.api.nvim_command("colorscheme catppuccin")
|
||||||
|
|
Loading…
Reference in New Issue