MROE CLEANING
parent
8b978b5a03
commit
493f981b76
@ -0,0 +1,6 @@
|
|||||||
|
-- Options are automatically loaded before lazy.nvim startup
|
||||||
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||||
|
-- Add any additional options here
|
||||||
|
|
||||||
|
vim.opt.relativenumber = false
|
||||||
|
vim.g.autoformat = false
|
@ -1,32 +1,101 @@
|
|||||||
return {
|
return {
|
||||||
{ "catppuccin/nvim", name = "catppuccin" },
|
|
||||||
|
{ "tpope/vim-sleuth" },
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
{
|
||||||
opts = {
|
"catppuccin/nvim",
|
||||||
colorscheme = "catppuccin",
|
name = "catppuccin",
|
||||||
},
|
config = function()
|
||||||
},
|
require("catppuccin").setup({
|
||||||
|
transparent_background = true,
|
||||||
{
|
})
|
||||||
"nvim-orgmode/orgmode",
|
end,
|
||||||
config = function()
|
},
|
||||||
require("orgmode").setup_ts_grammar()
|
|
||||||
|
-- {
|
||||||
require("nvim-treesitter.configs").setup({
|
-- "f-person/auto-dark-mode.nvim",
|
||||||
highlight = {
|
-- config = {
|
||||||
enable = true,
|
-- set_dark_mode = function()
|
||||||
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
-- vim.api.nvim_set_option("background", "dark")
|
||||||
},
|
-- vim.cmd("colorscheme catppuccin")
|
||||||
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
-- -- vim.cmd("colorscheme rose-pine")
|
||||||
})
|
-- end,
|
||||||
|
-- set_light_mode = function()
|
||||||
require("orgmode").setup({
|
-- vim.api.nvim_set_option("background", "light")
|
||||||
org_agenda_files = { "~/Sync/Notes/*" },
|
-- vim.cmd("colorscheme catppuccin")
|
||||||
org_default_notes_file = "~/Sync/Notes/Main.org",
|
-- -- vim.cmd("colorscheme rose-pine")
|
||||||
})
|
-- end,
|
||||||
end,
|
-- },
|
||||||
},
|
-- },
|
||||||
|
|
||||||
{ "dhruvasagar/vim-table-mode" },
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "catppuccin",
|
||||||
|
background_colour = "#000000",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"nvim-orgmode/orgmode",
|
||||||
|
config = function()
|
||||||
|
require("orgmode").setup_ts_grammar()
|
||||||
|
|
||||||
|
require("nvim-treesitter.configs").setup({
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
||||||
|
},
|
||||||
|
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
||||||
|
})
|
||||||
|
|
||||||
|
require("orgmode").setup({
|
||||||
|
org_agenda_files = { "~/Sync/Notes/*" },
|
||||||
|
org_default_notes_file = "~/Sync/Notes/Main.org",
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "dhruvasagar/vim-table-mode" },
|
||||||
|
|
||||||
|
{
|
||||||
|
"akinsho/toggleterm.nvim",
|
||||||
|
version = "*",
|
||||||
|
config = true,
|
||||||
|
keys = {
|
||||||
|
{ [[<C-\>]] },
|
||||||
|
{
|
||||||
|
"<leader>TT",
|
||||||
|
"<cmd>ToggleTerm direction=horizontal<cr>",
|
||||||
|
desc = "Open a horizontal terminal",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>TV",
|
||||||
|
"<cmd>ToggleTerm size=60 direction=vertical<cr>",
|
||||||
|
desc = "Open a vertical terminal",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"christoomey/vim-tmux-navigator",
|
||||||
|
cmd = {
|
||||||
|
"TmuxNavigateLeft",
|
||||||
|
"TmuxNavigateDown",
|
||||||
|
"TmuxNavigateUp",
|
||||||
|
"TmuxNavigateRight",
|
||||||
|
"TmuxNavigatePrevious",
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
|
||||||
|
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
|
||||||
|
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
|
||||||
|
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
|
||||||
|
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
-- {
|
||||||
|
-- "https://git.sr.ht/~soywod/himalaya-vim",
|
||||||
|
-- },
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue