mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 09:18:44 +02:00
update neovim-vscode config
This commit is contained in:
parent
35279181d6
commit
aad95a29a8
4 changed files with 324 additions and 1 deletions
23
lua/vscode/options.lua
Normal file
23
lua/vscode/options.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = false
|
||||
vim.opt.smartindent = true
|
||||
vim.opt.mouse = "a"
|
||||
vim.opt.ignorecase = false
|
||||
vim.opt.smartcase = true
|
||||
vim.opt.hlsearch = true
|
||||
vim.opt.colorcolumn = ""
|
||||
vim.opt.syntax = "enable"
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.background = "dark"
|
||||
vim.opt.backup = false
|
||||
vim.opt.writebackup = false
|
||||
vim.opt.swapfile = false
|
||||
vim.opt.undofile = true
|
||||
vim.opt.timeout = false
|
||||
vim.g.mapleader = ","
|
||||
vim.g.rust_recommended_style = true
|
||||
vim.g.targets_nl = "nh"
|
||||
vim.o.cpoptions = "aABceFs"
|
Loading…
Add table
Add a link
Reference in a new issue