-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
43 lines (36 loc) · 1.92 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-------------------------------------------------------
-- ███╗ ██╗██╗ ██╗██╗███╗ ███╗██████╗ ██████╗
-- ████╗ ██║██║ ██║██║████╗ ████║██╔══██╗██╔════╝
-- ██╔██╗ ██║██║ ██║██║██╔████╔██║██████╔╝██║
-- ██║╚██╗██║╚██╗ ██╔╝██║██║╚██╔╝██║██╔══██╗██║
-- ██║ ╚████║ ╚████╔╝ ██║██║ ╚═╝ ██║██║ ██║╚██████╗
-- ╚═╝ ╚═══╝ ╚═══╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝
-------------------------------------------------------
-- TODO: {FEATURE-RQSTS}
-- * Try nvim lsp
-- * Nvim Telescope search for only files with exact name
-- * Nvim Telescope remember search history and maintain order
-- * Code folding inside a particular scope (workaround)
-- * Jump back in history using alt+[ and fwd alt+]
-- * Keep search query for diff buffer separate
-- * Try a better terminal management approach
-- * Better comment manager (like jsx,tsx, and lua,vim)
-- * Describe a way to search visually selected word
-- Key Mappings [key] ---------------------------------
require('keymaps')
-- Set VIM Variables [var] ----------------------------
require('options')
-- Plug Plugin Manager [plg] --------------------------
require('plugins')
-- Color Schemes [clr] --------------------------------
local execute = vim.api.nvim_command
-- Moluakai
-- execute([[
-- colorscheme moluakai
-- highlight Comment cterm=italic gui=italic
-- ]])
-- TokyoNight
-- vim.g.tokyonight_style = "day"
-- vim.g.tokyonight_style = "night"
-- vim.g.tokyonight_transparent = true
execute[[colorscheme tokyonight]]