20 lines
381 B
Lua
20 lines
381 B
Lua
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = "\\"
|
|
|
|
vim.opt.clipboard = "unnamedplus"
|
|
vim.opt.incsearch = true
|
|
vim.opt.hlsearch = true
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = true
|
|
|
|
if vim.g.vscode then
|
|
require("profiles.vscode").setup()
|
|
else
|
|
require("profiles.native").setup()
|
|
end
|