add bookmarks to startify

This commit is contained in:
Robert Altner 2024-12-04 10:33:33 +01:00
parent 63ce97140d
commit 06c0967548
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8
3 changed files with 12 additions and 3 deletions

View file

@ -28,13 +28,13 @@ vim.filetype.add({
local colors = require("tokyonight.colors").setup()
require("editorconfig").properties.trim_trailing_whitespace = false
require('neoscroll').setup()
require("nvim-tree").setup({
update_focused_file = {
enable = true
}
})
require('neoscroll').setup()
require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "go", "typescript" },
@ -137,3 +137,9 @@ vim.api.nvim_create_autocmd("TermClose", {
})
require("ibl").setup()
vim.g.barbar_auto_setup = false
require'barbar'.setup {
letters = 'asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP'
}

View file

@ -15,7 +15,7 @@ map("n", "<F2>", ":TagbarToggle<CR>")
map("n", "<leader>e", ":CocList diagnostics<CR>")
map("n", "<C-P>", ":Telescope find_files<cr>")
map("n", "<leader>s", ":Telescope live_grep glob_pattern=*.{ts,html,c,h,go,json,py,sh,lua,vim,rs,txt}<cr>")
map("n", "<leader>s", ":Telescope live_grep glob_pattern=*.{ts,html,c,cc,cpp,h,go,json,py,sh,lua,vim,rs,txt}<cr>")
map("n", "<leader>sc", ":noh<CR>")
@ -58,3 +58,5 @@ map("v", "<A-k>", ":m '<-2<CR>gv=gv")
map('n', '<leader>p', '<Cmd>BufferPick<CR>', opts)
map('n', '<leader>d', '<Cmd>BufferPickDelete<CR>', opts)
map('n', '<leader>g', ':DiffviewOpen<CR>')