Files
lazy_config/init.lua
Daveanand Mannie 25b0dfbc24 updated config
2024-08-14 12:41:07 -04:00

32 lines
698 B
Lua

-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
require("nvim-treesitter.install").compilers = { "zig" }
-- colourscheme
vim.cmd("colorscheme wildcharm")
-- styling cuz im dumb and dont really know what im doing with this conifg
-- increase the time before whichkey pops up
vim.o.timeoutlen = 1400
-- show hidden files in neo tree
require('neo-tree').setup{
filesystem = {
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_hidden = false
},
}
}
--tab auto complete
local cmp = require'cmp'
cmp.setup({
mapping = {
['<Tab>'] = cmp.mapping.confirm({ select = true }),
}
})