require("configs.packages").setup() require("configs.options").setup() -- vsnip {{{ vim.cmd 'imap vsnip#jumpable(1) ? \'(vsnip-jump-next)\' : \'\'' vim.cmd 'smap vsnip#jumpable(1) ? \'(vsnip-jump-next)\' : \'\'' vim.cmd 'imap vsnip#jumpable(-1) ? \'(vsnip-jump-prev)\' : \'\'' vim.cmd 'smap vsnip#jumpable(-1) ? \'(vsnip-jump-prev)\' : \'\'' -- vsnip }}} -- dressing.nvim {{{ require('dressing').setup({ input = { relative = "editor", }, }) -- }}} -- Indent lines {{{ vim.g.indent_blankline_filetype_exclude = { 'help', 'NvimTree', 'TelescopePrompt', 'lspinfo' } vim.g.indent_blankline_buftype_exclude = { 'terminal', 'nofile', 'prompt' } -- indent lines }}} -- NEORAY {{{ vim.o.guifont = "Noto Sans Mono:14h" vim.cmd [[ if exists('g:neoray') NeoraySet CursorAnimTime 0 NeoraySet Transparency 0.95 NeoraySet TargetTPS 120 NeoraySet ContextMenuOn FALSE NeoraySet BoxDrawingOn TRUE NeoraySet WindowSize 100x40 NeoraySet WindowState none NeoraySet KeyZoomIn <> NeoraySet KeyZoomOut <> endif ]] -- }}} require("configs.colors") -- }}} -- {{{ LAYA vim.cmd [[ augroup layaAbbrevs autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev TR $this->obtainer()->translator()->t(); autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev TI $this->obtainer()->translator()->t() autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev LOG $this->obtainer()->logger()->log(); autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev DBG $this->obtainer()->logger()->log('debug', 'debug',); autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev PROD $this->producer() autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev FILE $this->producer()->file() autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev LINK $this->producer()->link($this, '') autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev NW $this->obtainer()->notifications()->warning(); autocmd BufRead,BufNewFile ~/jopixel/**/*.php iabbrev NS $this->obtainer()->notifications()->success(); augroup END ]] -- }}} LAYA -- vim: sw=2: ts=2: fdm=marker: