Compare commits

...

4 Commits

Author SHA1 Message Date
0009f09e82 Updating treesitter config
Removing unneeded, adding all languages and fixing php indent
2024-02-28 14:48:36 +01:00
ae1e337895 Highlight current line 2024-01-11 12:41:46 +01:00
947d04c265 fix harpoon - lazy - version to branch 2024-01-11 12:37:33 +01:00
3d987091c6 remove neorg as not needed 2024-01-10 22:53:36 +01:00
4 changed files with 7 additions and 37 deletions

View File

@ -1,7 +0,0 @@
-- Note keymaps
vim.keymap.set("n", "<leader>ni", ":Neorg index<CR>")
vim.keymap.set("n", "<leader>nr", ":Neorg return<CR>")
vim.keymap.set("n", "<leader>nj", ":Neorg journal custom<CR>")
vim.keymap.set("n", "<leader>nim", ":Neorg inject-metadata<CR>")
vim.keymap.set("n", "<leader>nis", ":Neorg inject-metadata<CR>")

View File

@ -1,8 +1,8 @@
-- parsing and highlighting -- parsing and highlighting
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed) -- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "python", "javascript", "typescript", "c", "rust", "bash", "lua", "vim", "vimdoc", "query" },
ensure_installed = 'all',
-- Install parsers synchronously (only applied to `ensure_installed`) -- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false, sync_install = false,
@ -12,12 +12,10 @@ require'nvim-treesitter.configs'.setup {
highlight = { highlight = {
enable = true, enable = true,
},
-- Needed because treesitter highlight turns off autoindent for php files
-- Setting this to true will run `:h syntax` and tree-sitter at the same time. indent = {
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). enable = true,
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = false,
}, },
} }

View File

@ -22,7 +22,7 @@ return {
}, },
{ "ThePrimeagen/harpoon", { "ThePrimeagen/harpoon",
version = "harpoon2", branch = "harpoon2",
dependencies = { "nvim-lua/plenary.nvim" }, dependencies = { "nvim-lua/plenary.nvim" },
}, },
@ -32,28 +32,6 @@ return {
{ "stevearc/oil.nvim" }, { "stevearc/oil.nvim" },
{ "nvim-neorg/neorg",
version = "*",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.concealer"] = {}, -- Adds pretty icons to your documents
["core.dirman"] = { -- Manages Neorg workspaces
config = {
workspaces = {
notes = "~/Documents/Notes",
},
default_workspace = "notes",
},
},
},
}
end,
},
{ "kylechui/nvim-surround", { "kylechui/nvim-surround",
version = "*", version = "*",
config = function() config = function()

View File

@ -3,6 +3,7 @@ vim.g.mapleader = " "
vim.opt.nu = true vim.opt.nu = true
vim.opt.relativenumber = true vim.opt.relativenumber = true
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.cursorline = true
vim.opt.tabstop = 4 vim.opt.tabstop = 4
vim.opt.softtabstop = 4 vim.opt.softtabstop = 4