Files
lazy_config/init.lua
Daveanand Mannie 570fa8dc8c small qol
2024-07-11 09:58:00 -04:00

38 lines
872 B
Lua

-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
require("nvim-treesitter.install").compilers = { "zig" }
-- colourscheme
vim.cmd("colorscheme wildcharm")
vim.g.python3_host_prog = 'C:/Users/support/Desktop/workspace/vimenv/Scripts/python.exe'
-- styling cuz im dumb and dont really know what im doing with this conifg
vim.o.tabstop = 4
vim.o.expandtab = true
vim.o.softtabstop = 4
vim.o.shiftwidth = 4
-- increase the time before whichkey pops up
vim.o.timeoutlen = 1000
-- 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 }),
}
})