local cfg = "/home/kdx/.config/nvim/" dofile(cfg .. "map.lua") dofile(cfg .. "plugs.lua") dofile(cfg .. "treesitter.lua") dofile(cfg .. "lsp.lua") dofile(cfg .. "telescope.lua") local indent = 8 vim.opt.list = true vim.opt.listchars = "tab:│·" vim.opt.background = "dark" vim.opt.tabstop = indent vim.opt.shiftwidth = indent vim.opt.colorcolumn = "80" vim.opt.number = true vim.opt.relativenumber = true vim.opt.mouse = "a" vim.opt.laststatus = 2 vim.opt.hlsearch = true vim.opt.incsearch = true vim.opt.showmatch = true vim.opt.autoindent = true vim.opt.ttyfast = true vim.opt.showmode = false map("n", "", ":noh") map("n", ";F", ":Telescope find_files") map("n", ";f", ":Telescope git_files") map("n", ";g", ":Telescope live_grep") map("n", ";b", ":Telescope buffers") map("n", ";l", ":Telescope current_buffer_fuzzy_find") map("n", ";t", ":!ctags -R --exclude=Makefile:Telescope tags") map("n", ";42", ":CellularAutomaton make_it_rain") map("n", ";69", ":CellularAutomaton game_of_life") vim.g.tokyonight_style = "night" vim.g.tokyonight_enable_italic = true vim.cmd("colorscheme tokyonight-night") require("lualine").setup({ options = { theme = "tokyonight" } }) local theme = require("alpha.themes.dashboard") theme.section.header.val = { [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]], [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⡞⡏]], [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡤⡲⠟⠉⠉⠀]], [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡺⠗⠉⠀⠀⠀⠀⠀]], [[⠀⢀⣴⣾⣿⣶⣄⠀⠀⢀⡴⠚⠁⠀⠀⠀⠀⠀⠀⠀⠀]], [[⢠⣿⣿⣿⣿⣿⣿⡆⢺⣋⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]], [[⠈⢿⣿⣿⣿⠛⡻⣣⡿⢷⢁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]], [[⠀⠀⠯⠠⢖⡩⡪⠂⠠⠞⡸⣰⠀⠀⠀⠀⠀⠀⠀⠀⠀]], [[⠀⡠⣢⣴⠵⠋⠈⢭⢆⡉⢕⡣⠇⠀⠀⠀⠀⠀⠀⠀⠀]], [[⠀⠀⠋⠀⠀⠀⠀⠀⣄⡒⣄⣅⢖⢖⠀⠀⠀⠀⠀⠀⠀]], [[⠀⠀⠀⠀⠀⠀⢀⡼⠋⠁⠙⠉⠘⠛⢦⠀⠀⠀⠀⠀⠀]], [[⠀⠀⠀⠀⢠⡴⡏⠀⠀⠀⠀⠀⠀⠀⠈⢳⣄⠀⠀⠀⠀]], [[⠀⠀⠀⠀⢐⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⠅⠀⠀⠀]], [[⠀⠀⠀⠀⠀⠹⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⠃⠀⠀⠀]], [[⠀⠀⠀⠀⠀⠀⢻⡄⠀⠀⠀⠀⠀⠀⠀⣸⠇⠀⠀⠀⠀]], [[⠀⠀⠀⣄⡔⠞⠷⠦⠀⠀⠀⠀⠀⠀⣬⣽⡄⠀⠀⠀⠀]], [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⠁⠀⠀⠀]] } require("alpha").setup(theme.config)