Made a lazy config folder
This commit is contained in:
27
lua/taken/plugins/lazy/cmdline.lua
Normal file
27
lua/taken/plugins/lazy/cmdline.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
local status, cmdline = pcall(require, "fine-cmdline")
|
||||
if not status then
|
||||
return
|
||||
end
|
||||
|
||||
cmdline.setup({
|
||||
cmdline = {
|
||||
enable_keymaps = true,
|
||||
smart_history = true,
|
||||
prompt = "> ",
|
||||
},
|
||||
popup = {
|
||||
position = {
|
||||
row = "10%",
|
||||
col = "50%",
|
||||
},
|
||||
size = {
|
||||
width = "80%",
|
||||
},
|
||||
border = {
|
||||
style = "rounded",
|
||||
},
|
||||
win_options = {
|
||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||
},
|
||||
},
|
||||
})
|
||||
52
lua/taken/plugins/lazy/keyseer.lua
Normal file
52
lua/taken/plugins/lazy/keyseer.lua
Normal file
@@ -0,0 +1,52 @@
|
||||
local status, keyseer = pcall(require, "keyseer")
|
||||
if not status then
|
||||
return
|
||||
end
|
||||
|
||||
keyseer.setup({
|
||||
debug = false,
|
||||
initial_mode = "n",
|
||||
include_builtin_keymaps = true,
|
||||
include_global_keymaps = true,
|
||||
include_buffer_keymaps = true,
|
||||
include_modified_keypresses = false,
|
||||
ignore_whichkey_conflicts = true,
|
||||
|
||||
ui = {
|
||||
border = "double",
|
||||
margin = { 1, 0, 1, 0 },
|
||||
winblend = 0,
|
||||
size = {
|
||||
width = 65,
|
||||
height = 10,
|
||||
},
|
||||
icons = {
|
||||
keyseer = "",
|
||||
},
|
||||
show_header = true,
|
||||
},
|
||||
keyboard = {
|
||||
layout = "qwertz",
|
||||
keycap_padding = { 0, 1, 0, 1 },
|
||||
highlight_padding = { 0, 0, 0, 0 },
|
||||
key_labels = {
|
||||
["Up"] = "↑",
|
||||
["Down"] = "↓",
|
||||
["Left"] = "←",
|
||||
["Right"] = "→",
|
||||
["<F1>"] = "F1",
|
||||
["<F2>"] = "F2",
|
||||
["<F3>"] = "F3",
|
||||
["<F4>"] = "F4",
|
||||
["<F5>"] = "F5",
|
||||
["<F6>"] = "F6",
|
||||
["<F7>"] = "F7",
|
||||
["<F8>"] = "F8",
|
||||
["<F9>"] = "F9",
|
||||
["<F10>"] = "F10",
|
||||
-- ["<space>"] = "SPC",
|
||||
-- ["<cr>"] = "RET",
|
||||
-- ["<tab>"] = "TAB",
|
||||
},
|
||||
},
|
||||
})
|
||||
18
lua/taken/plugins/lazy/neorg.lua
Normal file
18
lua/taken/plugins/lazy/neorg.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
local status, neorg = pcall(require, "neorg")
|
||||
if not status then
|
||||
return
|
||||
end
|
||||
|
||||
neorg.setup({
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.concealer"] = {},
|
||||
["core.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
main = "~/neorg/main",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
17
lua/taken/plugins/lazy/nvimcord.lua
Normal file
17
lua/taken/plugins/lazy/nvimcord.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
local setup, nvimcord = pcall(require, 'nvimcord')
|
||||
if not setup then
|
||||
return
|
||||
end
|
||||
|
||||
nvimcord.setup {
|
||||
autostart = false,
|
||||
client_id = '954365489214291979',
|
||||
large_file_icon = false,
|
||||
log_level = vim.log.levels.DEBUG,
|
||||
workspace_name = function()
|
||||
return vim.cmd [[pwd]]
|
||||
end,
|
||||
workspace_url = function()
|
||||
return ''
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user