small configuration changes
This commit is contained in:
parent
7de25761cc
commit
17fb99f983
|
@ -9,8 +9,8 @@ g.vim_json_conceal = 0
|
|||
g.git_worktrees = {
|
||||
{ toplevel = vim.env.HOME, gitdir = vim.env.XDG_DATA_HOME .. "/dots" },
|
||||
}
|
||||
g.max_lines = 1000
|
||||
g.max_size = 1024 * 100
|
||||
g.max_lines = 1000
|
||||
g.max_size = 1024 * 100
|
||||
|
||||
o.undodir = vim.fn.stdpath "cache" .. "/undo"
|
||||
o.clipboard = "unnamedplus"
|
||||
|
|
|
@ -2,6 +2,9 @@ local M = { "folke/lazy.nvim" }
|
|||
local icons = require('config.icons')
|
||||
|
||||
M.opts = {
|
||||
dev = {
|
||||
path = (os.getenv("XDG_DOCUMENTS_DIR") or "~/Documents") .. "/code/nvim-plugins",
|
||||
},
|
||||
install = {
|
||||
missing = true,
|
||||
colorscheme = { "tokyonight" },
|
||||
|
|
|
@ -11,7 +11,7 @@ return {
|
|||
require('plugins.misc.comment'),
|
||||
require('plugins.misc.gitsigns'),
|
||||
require('plugins.misc.indent-blankline'),
|
||||
require('plugins.misc.lf'),
|
||||
require('plugins.misc.taolf'),
|
||||
require('plugins.misc.lspkind'),
|
||||
require('plugins.misc.lualine'),
|
||||
require('plugins.misc.rustacean'),
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
local M = { "lmburns/lf.nvim" }
|
||||
local tt = require("plugins.misc.toggleterm").opts
|
||||
|
||||
M.depends = { "toggleterm.nvim" }
|
||||
|
||||
M.cmd = { "Lf" }
|
||||
|
||||
M.opts = {
|
||||
default_actions = {
|
||||
["<C-t>"] = "",
|
||||
["<C-x>"] = "",
|
||||
["<C-v>"] = "",
|
||||
["<C-o>"] = "",
|
||||
},
|
||||
mappings = false,
|
||||
width = tt.float_opts.width,
|
||||
height = tt.float_opts.height,
|
||||
winblend = tt.float_opts.winblend,
|
||||
direction = tt.direction,
|
||||
border = tt.float_opts.border,
|
||||
highlights = tt.highlights,
|
||||
float_opts = tt.float_opts,
|
||||
}
|
||||
|
||||
return M
|
|
@ -14,3 +14,4 @@
|
|||
.config/nvim/spell/en.utf-8.add.spl
|
||||
.local/share/xkb/compiled/keymap
|
||||
.config/git/host-setup
|
||||
.config/nvim/dev
|
||||
|
|
Loading…
Reference in New Issue