neovim-config/lua/init.lua
2024-04-17 22:48:26 +02:00

75 lines
1.5 KiB
Lua

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = '\\'
require("lazy").setup("plugins")
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.opt.termguicolors = true
local colors = require("tokyonight.colors").setup()
require("editorconfig").properties.trim_trailing_whitespace = false
require("nvim-tree").setup({
update_focused_file = {
enable = true,
update_cwd = trie
}
})
require('neoscroll').setup()
require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "go", "typescript" },
sync_install = false,
auto_install = true,
highlight = {
enable = true
}
}
require("telescope").setup{
defaults = {
file_ignore_patterns = {
"node_modules",
"packaging"
}
},
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = "smart_case",
}
}
}
require("telescope").load_extension("fzf")
require("scrollbar").setup{
handle = {
color = colors.bg_highlight,
},
marks = {
Search = { color = colors.orange },
Error = { color = colors.error },
Warn = { color = colors.warning },
Info = { color = colors.info },
Hint = { color = colors.hint },
Misc = { color = colors.purple },
}
}