mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
added tailwindcss and neorg plugins
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
require("CopilotChat").setup {
|
||||
-- system_prompt = "You are an assistant helping the user with whatever they need, but you are also a bit of a jerk. Do not use profanity.",
|
||||
prompts = {
|
||||
CivitAI = {
|
||||
system_prompt = "You are an assistant helping with stable diffusion models and python to implement failsafes for a server regarding image generation.",
|
||||
},
|
||||
Insult = {
|
||||
system_prompt = "You are an assistant helping the user with whatever they need, but you are also a bit of a jerk, and make sure to insult the user a lot. Use vulgar language if necessary.",
|
||||
}
|
||||
},
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
require("gruvbox-baby").setup()
|
||||
@@ -0,0 +1,12 @@
|
||||
require("neorg").setup{
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.autocommands"] = {},
|
||||
["core.integrations.treesitter"] = {},
|
||||
["core.concealer"] = {
|
||||
config = {
|
||||
icon_preset = "varied",
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
require("nvim-tree").setup {
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
require("nvim-web-devicons").setup{
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
require("rose-pine").setup {
|
||||
|
||||
}
|
||||
@@ -1 +1,2 @@
|
||||
require("telescope").setup ({})
|
||||
require("telescope").setup {
|
||||
}
|
||||
|
||||
+3
-5
@@ -1,4 +1,7 @@
|
||||
local map = vim.keymap.set
|
||||
local default_opts = {noremap = true}
|
||||
|
||||
map('n', '<leader>ff', "<cmd>lua require'telescope.builtin'.find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git' }})<cr>", default_opts)
|
||||
|
||||
map("n", "<Tab>", "<Cmd>BufferLineCycleNext<CR>")
|
||||
map("n", "<S-Tab>", "<Cmd>BufferLineCyclePrev<CR>")
|
||||
@@ -15,11 +18,6 @@ map("n", "<A-Down>", "<C-w>j", { desc = "Move to bottom split" })
|
||||
map("n", "<A-Up>", "<C-w>k", { desc = "Move to top split" })
|
||||
map("n", "<A-Right>", "<C-w>l", { desc = "Move to right split" })
|
||||
|
||||
-- Copilot Chat buffer
|
||||
map("n", "<A-c>", vim.cmd.CopilotChatToggle)
|
||||
map("i", "<A-c>", vim.cmd.CopilotChatToggle)
|
||||
map("v", "<A-c>", vim.cmd.CopilotChatToggle)
|
||||
|
||||
map('n', '<leader>e', vim.cmd.NvimTreeToggle)
|
||||
-- map('n', '<leader>e', function() Snacks.explorer() end)
|
||||
map('n', '<leader>u', require('undotree').toggle, { noremap = true, silent = true })
|
||||
|
||||
+17
-27
@@ -1,11 +1,27 @@
|
||||
return {
|
||||
{
|
||||
"nvim-neorg/neorg",
|
||||
lazy = false,
|
||||
version = "*",
|
||||
config = true,
|
||||
},
|
||||
{
|
||||
"roobert/tailwindcss-colorizer-cmp.nvim",
|
||||
},
|
||||
{
|
||||
'vyfor/cord.nvim',
|
||||
build = ':Cord update',
|
||||
},
|
||||
{
|
||||
"rose-pine/neovim",
|
||||
name = "rose-pine",
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
config = function()
|
||||
require("config.treesitter")
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"rmagatti/auto-session",
|
||||
config = function()
|
||||
@@ -16,9 +32,6 @@ return {
|
||||
"neoclide/coc.nvim",
|
||||
branch = 'release',
|
||||
},
|
||||
-- {
|
||||
-- "sainnhe/gruvbox-material",
|
||||
-- },
|
||||
{
|
||||
"olimorris/onedarkpro.nvim",
|
||||
config = function()
|
||||
@@ -54,9 +67,6 @@ return {
|
||||
require("config.barbar")
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "itchyny/lightline.vim",
|
||||
-- },
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
@@ -73,15 +83,6 @@ return {
|
||||
require("config.undotree")
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "lukas-reineke/indent-blankline.nvim",
|
||||
-- main = "ibl",
|
||||
-- ---@module "ibl"
|
||||
-- ---@type ibl.config
|
||||
-- config = function()
|
||||
-- require("config.indent-blankline")
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"hiphish/rainbow-delimiters.nvim",
|
||||
},
|
||||
@@ -110,17 +111,6 @@ return {
|
||||
require "config.copilot"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"CopilotC-Nvim/CopilotChat.nvim",
|
||||
dependencies = {
|
||||
{ "zbirenbaum/copilot.lua" }, -- or zbirenbaum/copilot.lua
|
||||
{ "nvim-lua/plenary.nvim", branch = "master" }, -- for curl, log and async functions
|
||||
},
|
||||
build = "make tiktoken", -- Only on MacOS or Linux
|
||||
config = function()
|
||||
require "config.copilotchat"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
config = function()
|
||||
|
||||
Reference in New Issue
Block a user