treewide: chores
This commit is contained in:
parent
92228a6538
commit
2c3b306495
5 changed files with 41 additions and 25 deletions
|
@ -13,6 +13,9 @@ vim.opt.cursorline = true
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
|
-- Breakindent
|
||||||
|
vim.opt.breakindent = true
|
||||||
|
|
||||||
-- Mouse
|
-- Mouse
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
aunmenu PopUp.How-to\ disable\ mouse
|
aunmenu PopUp.How-to\ disable\ mouse
|
||||||
|
@ -29,7 +32,10 @@ vim.opt.ignorecase = true
|
||||||
vim.opt.smartcase = true
|
vim.opt.smartcase = true
|
||||||
|
|
||||||
-- System integration
|
-- System integration
|
||||||
vim.opt.clipboard = "unnamedplus"
|
-- https://github.com/nvim-lua/kickstart.nvim/blob/7201dc480134f41dd1be1f8f9b8f8470aac82a3b/init.lua#L113-L119
|
||||||
|
vim.schedule(function()
|
||||||
|
vim.opt.clipboard = "unnamedplus"
|
||||||
|
end)
|
||||||
vim.opt.swapfile = false
|
vim.opt.swapfile = false
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
|
|
||||||
|
@ -42,12 +48,3 @@ vim.opt.tabstop = 2
|
||||||
vim.opt.laststatus = 3
|
vim.opt.laststatus = 3
|
||||||
vim.opt.showmode = false -- Handled by lualine
|
vim.opt.showmode = false -- Handled by lualine
|
||||||
vim.opt.signcolumn = "yes" -- Prevents shifting
|
vim.opt.signcolumn = "yes" -- Prevents shifting
|
||||||
|
|
||||||
-- Neovide specific settings
|
|
||||||
if vim.g.neovide then
|
|
||||||
vim.opt.guifont = "monospace:h12"
|
|
||||||
|
|
||||||
-- Terminal-emulator-like copy/pasting
|
|
||||||
vim.api.nvim_set_keymap("n", "<C-C>", '"+y', { noremap = true, silent = true })
|
|
||||||
vim.api.nvim_set_keymap("n", "<C-V>", '"+p', { noremap = true, silent = true })
|
|
||||||
end
|
|
||||||
|
|
|
@ -6,12 +6,19 @@ return {
|
||||||
"hrsh7th/cmp-cmdline",
|
"hrsh7th/cmp-cmdline",
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
"hrsh7th/cmp-path",
|
"hrsh7th/cmp-path",
|
||||||
|
"saadparwaiz1/cmp_luasnip",
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
|
|
||||||
-- Snippets
|
-- Snippets
|
||||||
|
{
|
||||||
"L3MON4D3/LuaSnip", -- snippet engine
|
"L3MON4D3/LuaSnip", -- snippet engine
|
||||||
|
dependencies = {
|
||||||
"rafamadriz/friendly-snippets", -- pre-configured snippet texts
|
"rafamadriz/friendly-snippets", -- pre-configured snippet texts
|
||||||
"saadparwaiz1/cmp_luasnip", -- nvim-cmp source
|
config = function()
|
||||||
|
require("luasnip.loaders.from_vscode").lazy_load()
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
event = { "InsertEnter", "CmdlineEnter" },
|
event = { "InsertEnter", "CmdlineEnter" },
|
||||||
opts = function()
|
opts = function()
|
||||||
|
@ -23,8 +30,6 @@ return {
|
||||||
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
|
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
|
||||||
end
|
end
|
||||||
|
|
||||||
require("luasnip.loaders.from_vscode").lazy_load()
|
|
||||||
|
|
||||||
cmp.setup({
|
cmp.setup({
|
||||||
-- keybinds
|
-- keybinds
|
||||||
-- see: https://github.com/hrsh7th/nvim-cmp/wiki/Example-mappings
|
-- see: https://github.com/hrsh7th/nvim-cmp/wiki/Example-mappings
|
||||||
|
@ -32,10 +37,8 @@ return {
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_next_item()
|
cmp.select_next_item()
|
||||||
elseif luasnip.expand_or_jumpable() then
|
elseif luasnip.locally_jumpable(1) then
|
||||||
luasnip.expand_or_jump()
|
luasnip.jump(1)
|
||||||
elseif has_words_before() then
|
|
||||||
cmp.complete()
|
|
||||||
else
|
else
|
||||||
fallback()
|
fallback()
|
||||||
end
|
end
|
||||||
|
@ -44,14 +47,27 @@ return {
|
||||||
["<S-Tab>"] = cmp.mapping(function(fallback)
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_prev_item()
|
cmp.select_prev_item()
|
||||||
elseif luasnip.jumpable(-1) then
|
elseif luasnip.locally_jumpable(-1) then
|
||||||
luasnip.jump(-1)
|
luasnip.jump(-1)
|
||||||
else
|
else
|
||||||
fallback()
|
fallback()
|
||||||
end
|
end
|
||||||
end, { "i", "s" }),
|
end, { "i", "s" }),
|
||||||
|
|
||||||
["<CR>"] = cmp.mapping.confirm(),
|
["<CR>"] = cmp.mapping(function(fallback)
|
||||||
|
if cmp.visible() then
|
||||||
|
if luasnip.expandable() then
|
||||||
|
luasnip.expand()
|
||||||
|
else
|
||||||
|
cmp.confirm({
|
||||||
|
select = true,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
else
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
end),
|
||||||
|
|
||||||
["<Up>"] = cmp.mapping.select_prev_item({ behavior = "select" }),
|
["<Up>"] = cmp.mapping.select_prev_item({ behavior = "select" }),
|
||||||
["<Down>"] = cmp.mapping.select_next_item({ behavior = "select" }),
|
["<Down>"] = cmp.mapping.select_next_item({ behavior = "select" }),
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ return {
|
||||||
end,
|
end,
|
||||||
keys = {
|
keys = {
|
||||||
{
|
{
|
||||||
"<leader>lf",
|
"<leader>f",
|
||||||
function()
|
function()
|
||||||
vim.lsp.buf.format()
|
vim.lsp.buf.format()
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -2,7 +2,10 @@ return {
|
||||||
"nvim-tree/nvim-tree.lua",
|
"nvim-tree/nvim-tree.lua",
|
||||||
opts = {
|
opts = {
|
||||||
view = {
|
view = {
|
||||||
adaptive_size = true,
|
side = "right",
|
||||||
|
},
|
||||||
|
renderer = {
|
||||||
|
symlink_destination = false, -- usually too long
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
init = function()
|
init = function()
|
||||||
|
|
|
@ -7,8 +7,8 @@ return {
|
||||||
opts = {},
|
opts = {},
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>f", "<cmd>Telescope find_files<CR>", desc = "Find files" },
|
|
||||||
{ "<leader><leader>", "<cmd>Telescope oldfiles<CR>", desc = "Recent files" },
|
{ "<leader><leader>", "<cmd>Telescope oldfiles<CR>", desc = "Recent files" },
|
||||||
|
{ "<leader>sf", "<cmd>Telescope find_files<CR>", desc = "Find files" },
|
||||||
{ "<leader>sg", "<cmd>Telescope live_grep<CR>", desc = "Live grep" },
|
{ "<leader>sg", "<cmd>Telescope live_grep<CR>", desc = "Live grep" },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue