indentline working now!

navigator
siduck76 3 years ago
parent 77d6602ae1
commit 89d7172bac

@ -26,6 +26,8 @@ cmd "syntax enable"
cmd "syntax on"
g.auto_save = 1
g.indentLine_enabled = 1
g.indentLine_char_list = {''}
g.mapleader = " "

@ -14,7 +14,7 @@ return require("packer").startup(
use {"nvim-treesitter/nvim-treesitter"}
use {"chriskempson/base16-vim"}
use {"norcalli/nvim-colorizer.lua"}
-- use { 'Yggdroot/indentLine'}
use { 'Yggdroot/indentLine'}
use {"ryanoasis/vim-devicons"}
use {"sbdchd/neoformat"}
use {"neovim/nvim-lspconfig"}

@ -21,6 +21,9 @@ opt("w", "signcolumn", "yes")
opt("o", "cmdheight", 1)
opt("o", "updatetime", 250)
opt("o", "clipboard", "unnamedplus")
opt("b", "expandtab", true )
opt("b", "shiftwidth", 2 )
local M = {}

Loading…
Cancel
Save