Compare commits
No commits in common. "4ce0a810569ee03d93ca542bbde32f52c4034a17" and "6f316190e51ff67e086ccc8fd067ee70efd559f8" have entirely different histories.
4ce0a81056
...
6f316190e5
14
init.lua
14
init.lua
|
@ -272,13 +272,6 @@ vim.o.termguicolors = true
|
||||||
-- Set the spelling for English, French and German.
|
-- Set the spelling for English, French and German.
|
||||||
vim.opt.spelllang = 'en,fr,de'
|
vim.opt.spelllang = 'en,fr,de'
|
||||||
|
|
||||||
-- Set the folding level to 1, to allow level 2 headers to be seen.
|
|
||||||
vim.opt.foldlevel = 1
|
|
||||||
|
|
||||||
-- Set a python virtualenv as python3 provider.
|
|
||||||
-- `vim.env.HOME` uses the neovim API to fetch the $HOME env.
|
|
||||||
vim.g.python3_host_prog = 'vim.env.HOME/.pyenv/versions/neovim3/bin/python'
|
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
|
|
||||||
-- Keymaps for better default experience
|
-- Keymaps for better default experience
|
||||||
|
@ -462,13 +455,6 @@ local servers = {
|
||||||
-- pyright = {},
|
-- pyright = {},
|
||||||
-- rust_analyzer = {},
|
-- rust_analyzer = {},
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
|
|
||||||
marksman = {
|
|
||||||
ft = {
|
|
||||||
'markdown',
|
|
||||||
'pandoc'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
|
|
|
@ -7,10 +7,7 @@ vim.cmd([[ let g:mkdp_theme = 'light' ]])
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"iamcco/markdown-preview.nvim",
|
"iamcco/markdown-preview.nvim",
|
||||||
ft = {
|
ft = "pandoc",
|
||||||
'pandoc',
|
|
||||||
'markdown'
|
|
||||||
},
|
|
||||||
lazy = true,
|
lazy = true,
|
||||||
build = "cd app && yarn install",
|
build = "cd app && yarn install",
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,10 +9,7 @@ vim.keymap.set({'n','x','v'}, '<leader>tf', '<cmd>MkdnTableFormat<CR>', {desc =
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"jakewvincent/mkdnflow.nvim",
|
"jakewvincent/mkdnflow.nvim",
|
||||||
ft = {
|
ft = 'pandoc',
|
||||||
'pandoc',
|
|
||||||
'markdown'
|
|
||||||
},
|
|
||||||
lazy = true,
|
lazy = true,
|
||||||
config = function ()
|
config = function ()
|
||||||
require('mkdnflow').setup({
|
require('mkdnflow').setup({
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
-- In order to manage CSV files
|
|
||||||
|
|
||||||
return {
|
|
||||||
'cameron-wags/rainbow_csv.nvim',
|
|
||||||
config = true,
|
|
||||||
ft = {
|
|
||||||
'csv',
|
|
||||||
'tsv',
|
|
||||||
'csv_semicolon',
|
|
||||||
'csv_whitespace',
|
|
||||||
'csv_pipe',
|
|
||||||
'rfc_csv',
|
|
||||||
'rfc_semicolon'
|
|
||||||
},
|
|
||||||
cmd = {
|
|
||||||
'RainbowDelim',
|
|
||||||
'RainbowDelimSimple',
|
|
||||||
'RainbowDelimQuoted',
|
|
||||||
'RainbowMultiDelim'
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
-- Zen mode with twilight.
|
|
||||||
-- Improves the edition experience with distraction free feature.
|
|
||||||
|
|
||||||
return {
|
|
||||||
"folke/zen-mode.nvim",
|
|
||||||
-- Twilight allows to dim text outside of the cursor line.
|
|
||||||
dependencies = {
|
|
||||||
"folke/twilight.nvim",
|
|
||||||
opts = {
|
|
||||||
-- Set the context to null in order to avoid highlighting to much
|
|
||||||
-- paragraphs in markdown.
|
|
||||||
context = 0,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
opts = {
|
|
||||||
window = {
|
|
||||||
-- Set the window width (85 columns) and height (80%).
|
|
||||||
width = 85,
|
|
||||||
height = .8,
|
|
||||||
options = {
|
|
||||||
-- Disable line numbering.
|
|
||||||
number = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
AoU
|
|
||||||
Floriane
|
|
Binary file not shown.
Loading…
Reference in New Issue