- Bash: config file - Zsh: config file - Fish: config file and fish plugins - Nvim: config files - Kitty: config files
16 lines
311 B
Lua
16 lines
311 B
Lua
require("nvchad.options")
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
-- Modification de la taille des tabulations
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
|
|
vim.opt.shell = "/usr/local/bin/fish"
|
|
|
|
vim.opt.foldmethod = "marker"
|
|
|
|
-- local o = vim.o
|
|
-- o.cursorlineopt ='both' -- to enable cursorline!
|