Translated some spanish comments to english.
This commit is contained in:
parent
a64296027d
commit
ed2f7bdb40
@ -1,6 +1,6 @@
|
|||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
|
|
||||||
local keymap = vim.keymap -- haz las cosas facil..
|
local keymap = vim.keymap -- Do things easily..
|
||||||
|
|
||||||
-- General Keymaps
|
-- General Keymaps
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
local opt = vim.opt -- for conciseness
|
local opt = vim.opt -- for conciseness
|
||||||
|
|
||||||
-- Numeracion de las lineas
|
-- Number of Lines
|
||||||
opt.relativenumber = true
|
opt.relativenumber = true
|
||||||
opt.number = true
|
opt.number = true
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ opt.smartcase = true
|
|||||||
-- Cursor line
|
-- Cursor line
|
||||||
opt.cursorline = true
|
opt.cursorline = true
|
||||||
|
|
||||||
-- appearance
|
-- Appearance
|
||||||
opt.termguicolors = true
|
opt.termguicolors = true
|
||||||
opt.background = "dark"
|
opt.background = "dark"
|
||||||
opt.signcolumn = "yes"
|
opt.signcolumn = "yes"
|
||||||
@ -31,7 +31,7 @@ opt.backspace = "indent,eol,start"
|
|||||||
-- Clipboard
|
-- Clipboard
|
||||||
opt.clipboard:append("unnamedplus")
|
opt.clipboard:append("unnamedplus")
|
||||||
|
|
||||||
-- Splitt Windows
|
-- Split Windows
|
||||||
opt.splitright = true
|
opt.splitright = true
|
||||||
opt.splitbelow = true
|
opt.splitbelow = true
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user