24 lines
492 B
Lua
24 lines
492 B
Lua
if vim.g.vscode then
|
|
-- VSCode extension
|
|
else
|
|
-- ordinary Neovim
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
require("config.lazy")
|
|
end
|
|
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.expandtab = true
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.smartindent = true
|
|
vim.opt.autoindent = true
|
|
|
|
vim.opt.termguicolors = true
|
|
vim.opt.background = "dark"
|
|
vim.opt.title = true
|
|
vim.opt.number = true
|
|
vim.opt.cursorline = true
|
|
vim.opt.ttyfast = true
|