telescope,neo-tree,lsp config
This commit is contained in:
parent
e0f68cbc51
commit
cc3f80c743
9 changed files with 190 additions and 28 deletions
20
lua/vim-options.lua
Normal file
20
lua/vim-options.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
vim.g.mapleader = ' '
|
||||
vim.g.maplocalleader = ' '
|
||||
|
||||
local opt = vim.opt
|
||||
|
||||
-- line numbers
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
||||
|
||||
-- tabs & indentation
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
|
||||
-- line wrap
|
||||
opt.wrap = false
|
||||
|
||||
-- Sync clipboard between OS and Neovim.
|
||||
opt.clipboard = 'unnamedplus'
|
||||
Loading…
Add table
Add a link
Reference in a new issue